File tree Expand file tree Collapse file tree 1 file changed +23
-12
lines changed Expand file tree Collapse file tree 1 file changed +23
-12
lines changed Original file line number Diff line number Diff line change 1- import Link from "next/link" ;
1+ import { Card , Cards } from "fumadocs-ui/components/card" ;
2+ import { Brush , BookOpenText , ScrollText } from "lucide-react" ;
23
34export 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}
You can’t perform that action at this time.
0 commit comments