2024-09-20 23:15:42 +08:00
|
|
|
import Header from "@/components/window/Header";
|
|
|
|
|
import Nav from "@/components/window/Nav";
|
|
|
|
|
import SideBar from "@/components/window/SideBar";
|
|
|
|
|
|
|
|
|
|
export default function BaseLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
2024-09-21 00:25:31 +08:00
|
|
|
<div className="bg-[#f1f0f2] h-full w-full">
|
2024-09-20 23:15:42 +08:00
|
|
|
<Nav />
|
|
|
|
|
|
|
|
|
|
<div className="flex flex-col w-full h-full">
|
|
|
|
|
<SideBar />
|
|
|
|
|
|
2024-09-21 00:25:31 +08:00
|
|
|
<main className="flex flex-col h-full pb-5 pr-5 ml-20 overflow-hidden ">
|
2024-09-20 23:15:42 +08:00
|
|
|
<Header />
|
|
|
|
|
|
|
|
|
|
{children}
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|