Skip to content
This repository was archived by the owner on Mar 2, 2025. It is now read-only.

Commit 3f0df77

Browse files
formatting and title
Signed-off-by: benny-nottonson <[email protected]>
1 parent c101b1e commit 3f0df77

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

app/page.tsx

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@ import {
66
CardHeader,
77
CardTitle,
88
} from "@/components/ui/card";
9+
import { Separator } from "@/components/ui/separator";
910
import Docs from "@/docs.json";
1011
import Link from "next/link";
1112

1213
export default function Home() {
1314
return (
14-
<main className="flex items-center justify-center pt-32">
15+
<main className="flex items-center justify-center pt-8 flex-col gap-8">
16+
<div className="text-center w-full">
17+
<h1 className="text-4xl font-bold">Welcome to the Docs</h1>
18+
<p className="text-xl mt-4">
19+
This is a collection of documentation for the various packages and
20+
modules within Basalt.
21+
</p>
22+
</div>
23+
<Separator className="w-2/3" />
1524
<div className="w-full max-w-6xl grid grid-cols-1 md:grid-cols-3 gap-16">
1625
{Docs.decl.packages.map((pkg) => (
1726
<Card className="w-full flex flex-col" key={pkg.name}>

bun.lockb

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)