feat: update-layout & add uuid tool #4

Merged
typist merged 7 commits from feat/update-layout into main 2025-10-28 00:55:43 +08:00
Showing only changes of commit 211ad4bd64 - Show all commits

View File

@@ -7,9 +7,14 @@ import { AppSidebar } from "@/components/sidebar";
export const Layout: FC = () => (
<SidebarProvider>
<AppSidebar />
<main>
<SidebarTrigger />
<Outlet />
</main>
<div className="p-4 flex flex-col w-full h-[100vh]">
<nav className="flex items-center justify-between">
<SidebarTrigger className="size-10" />
<div role="actions" />
</nav>
<main className="flex-1 overflow-auto p-4">
<Outlet />
</main>
</div>
</SidebarProvider>
);