cleanup
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 57s

This commit is contained in:
Lee
2024-04-16 19:12:26 +01:00
parent 1d40c9b5d3
commit 9e0a914ccb
16 changed files with 15 additions and 24 deletions

View File

@ -0,0 +1,14 @@
import NavBar from "./navbar";
export default function Container({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="z-[9999] m-auto flex h-screen min-h-full flex-col items-center opacity-90 md:max-w-[1200px]">
<NavBar />
<div className="w-full flex-1 p-4">{children}</div>
</div>
);
}