13 lines
428 B
TypeScript
13 lines
428 B
TypeScript
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>
|
|
);
|
|
}
|