32 lines
1.3 KiB
JavaScript
32 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import PageLayout from '../components/Layout/PageLayout';
|
|
import ResearchHero from '../components/Research/ResearchHero';
|
|
import PlantResearch from '../components/Research/PlantResearch';
|
|
import AnimalResearch from '../components/Research/AnimalResearch';
|
|
import MicrobialResearch from '../components/Research/MicrobialResearch';
|
|
import HumanResearch from '../components/Research/HumanResearch';
|
|
export default function ResearchPage() {
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
<main>
|
|
<ResearchHero/>
|
|
<PlantResearch />
|
|
<AnimalResearch />
|
|
<MicrobialResearch />
|
|
<HumanResearch />
|
|
</main>
|
|
</PageLayout>
|
|
);
|
|
}
|
|
|
|
// For App Router, export metadata separately
|
|
export const metadata = {
|
|
title: 'Research Areas - Operify Tech',
|
|
description: 'Explore Operify Tech\'s research areas in plant, animal, microbial, and human genomics using advanced next-generation sequencing (NGS) technologies',
|
|
keywords: 'Operify Tech, research, genomics, NGS, next generation sequencing, plant research, animal research, microbial research, human research',
|
|
openGraph: {
|
|
title: 'Research Areas - Operify Tech',
|
|
description: 'Explore Operify Tech\'s research areas in plant, animal, microbial, and human genomics using advanced next-generation sequencing (NGS) technologies',
|
|
type: 'website',
|
|
},
|
|
}; |