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/our-team/page.js Normal file
View File

@ -0,0 +1,27 @@
import React from 'react';
import PageLayout from "../components/Layout/PageLayout";
import TeamHero from '../components/Team/TeamHero';
import TeamGrid from '../components/Team/TeamGrid';
export default function OurTeamPage() {
return (
<PageLayout fixedHeader={true}>
<main>
<TeamHero />
<TeamGrid />
</main>
</PageLayout>
);
}
// For App Router, export metadata separately
export const metadata = {
title: 'Our Team - Operify Tech',
description: 'Meet the leadership team and experts at Operify Tech who are driving innovation in genomic sequencing and research',
keywords: 'Operify Tech, team, leadership, genomics experts, NGS specialists, research team',
openGraph: {
title: 'Our Team - Operify Tech',
description: 'Meet the leadership team and experts at Operify Tech who are driving innovation in genomic sequencing and research',
type: 'website',
},
};