Skip to content

Commit 3de7e3d

Browse files
committed
feat: ✨ update homepage
1 parent 38a21e8 commit 3de7e3d

File tree

1 file changed

+23
-12
lines changed

1 file changed

+23
-12
lines changed

app/(home)/page.tsx

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,30 @@
1-
import Link from "next/link";
1+
import { Card, Cards } from "fumadocs-ui/components/card";
2+
import { Brush, BookOpenText, ScrollText } from "lucide-react";
23

34
export default function HomePage() {
45
return (
5-
<main className="flex flex-col justify-center h-screen text-center">
6-
<h1 className="mb-4 text-2xl font-bold">Hello World</h1>
7-
<p className="text-fd-muted-foreground">
8-
You can open{" "}
9-
<Link
6+
<main className="p-4">
7+
<h1 className="mt-6 mb-4 text-2xl font-medium">Welcome to ICSSC</h1>
8+
<Cards>
9+
<Card
10+
icon={<Brush />}
11+
href="/docs/brand"
12+
title="Brand Guide"
13+
description="Logos, colors, topography, guidelines"
14+
/>
15+
<Card
16+
icon={<BookOpenText />}
1017
href="/docs/developer"
11-
className="font-semibold underline text-fd-foreground"
12-
>
13-
/docs/developer
14-
</Link>{" "}
15-
and see the documentation.
16-
</p>
18+
title="Developer Docs"
19+
description="Public facing developer projects"
20+
/>
21+
<Card
22+
icon={<ScrollText />}
23+
href="/docs/contributor"
24+
title="Contributor Docs"
25+
description="Internal documentation and design reasoning"
26+
/>
27+
</Cards>
1728
</main>
1829
);
1930
}

0 commit comments

Comments
 (0)