Docker config
This commit is contained in:
23
app/components/SampleInitiation/ContactNote.jsx
Normal file
23
app/components/SampleInitiation/ContactNote.jsx
Normal file
@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
import Link from 'next/link';
|
||||
|
||||
const ContactNote = () => {
|
||||
return (
|
||||
<div className="bg-white py-4">
|
||||
<div className="container">
|
||||
<p className="text-gray-700 leading-relaxed ml-6 md:ml-8 lg:ml-8">
|
||||
Please reach out to us by emailing{' '}
|
||||
<Link
|
||||
href="mailto:info@operifytech.com"
|
||||
className="text-blue-600 hover:text-blue-700 transition-colors"
|
||||
>
|
||||
info@operifytech.com
|
||||
</Link>
|
||||
.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactNote;
|
||||
Reference in New Issue
Block a user