This commit is contained in:
14
src/app/components/container.tsx
Normal file
14
src/app/components/container.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user