base page

This commit is contained in:
2024-09-03 22:00:14 +02:00
parent 2c6d7de501
commit 10c64f347f
3 changed files with 25 additions and 6 deletions

11
app/welcome/layout.tsx Normal file
View File

@ -0,0 +1,11 @@
export default function Layout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="flex flex-col h-screen w-screen block bg-emerald-950 text-neutral-300">
<div className="m-4 md:my-16 md:mx-auto max-w-96">{children}</div>
</div>
);
}