mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
8 lines
325 B
TypeScript
8 lines
325 B
TypeScript
export default function Home() {
|
|
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>
|
|
);
|
|
}
|