update: setup home page ui

This commit is contained in:
purp1e
2024-09-21 00:25:31 +08:00
parent 2898416add
commit f9a4427c2f
15 changed files with 240 additions and 44 deletions

View File

@@ -8,13 +8,13 @@ export default function BaseLayout({
children: React.ReactNode;
}) {
return (
<div className="bg-[#f1f0f2] h-screen w-full">
<div className="bg-[#f1f0f2] h-full w-full">
<Nav />
<div className="flex flex-col w-full h-full">
<SideBar />
<main className="pb-5 pr-5 ml-20">
<main className="flex flex-col h-full pb-5 pr-5 ml-20 overflow-hidden ">
<Header />
{children}