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

27
app/contact-us/page.js Normal file
View File

@ -0,0 +1,27 @@
import React from 'react';
import PageLayout from '../components/Layout/PageLayout';
import ContactPage from '../components/ContactPage/ContactPage';
export default function ContactUsPage() {
return (
<PageLayout fixedHeader={true}>
<main>
<ContactPage />
</main>
</PageLayout>
);
}
// For App Router, export metadata separately
export const metadata = {
title: 'Contact Us - Operify Tech',
description: 'Get in touch with Operify Tech for your genomic sequencing, DNA analysis, and research needs. We are here to help with your innovation projects',
keywords: 'Contact Operify Tech, genomic sequencing contact, DNA sequencing services, NGS contact, research collaboration',
openGraph: {
title: 'Contact Us - Operify Tech',
description: 'Get in touch with Operify Tech for your genomic sequencing, DNA analysis, and research needs. We are here to help with your innovation projects',
type: 'website',
},
};