2024-09-03 22:00:14 +02:00
|
|
|
export default function Layout({
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
children: React.ReactNode;
|
|
|
|
}>) {
|
|
|
|
return (
|
2024-09-04 08:45:00 +02:00
|
|
|
<div className="flex h-full w-full bg-green-950 text-neutral-200">
|
2024-09-03 22:00:14 +02:00
|
|
|
<div className="m-4 md:my-16 md:mx-auto max-w-96">{children}</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|