Docker config
This commit is contained in:
33
app/research/page.js
Normal file
33
app/research/page.js
Normal file
@ -0,0 +1,33 @@
|
||||
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',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user