Init Dyad app

This commit is contained in:
[dyad]
2026-01-20 11:58:25 +01:00
commit ebe2e4cec4
69 changed files with 9553 additions and 0 deletions

12
src/app/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { MadeWithDyad } from "@/components/made-with-dyad";
export default function Home() {
return (
<div className="grid grid-rows-[1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<main className="flex flex-col gap-8 row-start-1 items-center sm:items-start">
<h1>Blank page</h1>
</main>
<MadeWithDyad />
</div>
);
}