Files

8 lines
325 B
TypeScript
Raw Permalink Normal View History

2024-11-03 15:29:30 +01:00
export default function Home() {
2025-05-16 15:54:17 +02:00
return (
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<h1 className="font-bold text-4xl leading-tight">Home landing page</h1>
</div>
);
2024-11-03 15:29:30 +01:00
}