base page
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 43s

This commit is contained in:
2024-09-03 22:00:14 +02:00
parent 620f0477fd
commit 8f0cdbaa21
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>
);
}