🎉 Init sideload panel

This commit is contained in:
2024-01-26 00:00:07 +08:00
parent bfce13fc74
commit da90d12a3a
39 changed files with 902 additions and 2798 deletions

View File

@@ -0,0 +1,11 @@
import Navbar from "./shared/Navbar";
export default function RootLayout(props: any) {
return (
<div>
<Navbar />
<main class="h-[calc(100vh-64px)]">{props.children}</main>
</div>
);
}