Docker config

This commit is contained in:
mukesh13
2025-06-16 15:53:12 +05:30
commit da3df17022
411 changed files with 24117 additions and 0 deletions

View 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;