-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponents_research.tsx
44 lines (42 loc) · 1.64 KB
/
components_research.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
export default function Research() {
return (
<section className="py-16 bg-muted" id="research">
<div className="container px-4 md:px-6">
<h2 className="text-3xl font-bold tracking-tighter text-center mb-8">Research Interests</h2>
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
<Card>
<CardHeader>
<CardTitle>Epigenomic Markers</CardTitle>
</CardHeader>
<CardContent>
<p className="text-muted-foreground">
Identifying epigenomic markers to predict chronic diseases associated with post-traumatic stress disorder.
</p>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle>Multi-omics Integration</CardTitle>
</CardHeader>
<CardContent>
<p className="text-muted-foreground">
Integrating genomics, transcriptomics, and proteomics data to enhance understanding of epigenomic regulation in health and disease.
</p>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle>Machine Learning in Disease Prediction</CardTitle>
</CardHeader>
<CardContent>
<p className="text-muted-foreground">
Developing predictive models for disease risk assessment using machine learning and artificial intelligence techniques.
</p>
</CardContent>
</Card>
</div>
</div>
</section>
)
}