Skip to content

Commit 5198bf2

Browse files
committed
Add home page
1 parent da0a0e6 commit 5198bf2

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

src/layouts/Home.astro

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
import '@/styles/base.css'
3+
---
4+
5+
<html lang="en">
6+
<head>
7+
<meta charset="utf-8" />
8+
<meta name="viewport" content="width=device-width" />
9+
<meta name="generator" content={Astro.generator} />
10+
<link rel="icon" type="image/svg+xml" href={`${import.meta.env.BASE_URL}/favicon.png`} />
11+
</head>
12+
<body>
13+
<main class="dm-sans-500">
14+
<div class="flex flex-row gap-4">
15+
<a class="hover:bg-gray-100 transition p-4" href="dccs/">CF Programs</a>
16+
<a class="hover:bg-gray-100 transition p-4" href="centers/">Centers</a>
17+
</div>
18+
<slot />
19+
</main>
20+
</body>
21+
</html>

src/pages/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: '@/layouts/Home.astro'
3+
---
4+
5+
# Discover, Analyze, and Integrate NIH Common Fund Data
6+
7+
The NIH Common Fund programs generate diverse datasets from a variety of projects ranging from genomics to phenotypes. The Common Fund Data Ecosystem (CFDE) aims to facilitate improved discovery, reuse, integration, and analyses of these datasets to form novel hypothesis for accelerating discoveries in biomedical research.

0 commit comments

Comments
 (0)