Dashboard Admin

This commit is contained in:
2025-04-21 17:49:13 +08:00
parent cdfbbb412c
commit 7b0fb9332e
79 changed files with 1764 additions and 30 deletions

View File

@@ -0,0 +1,13 @@
import { Stack } from "@mantine/core";
import AdminNav from "../_com/AdminNav";
function Layout({ children }: { children: React.ReactNode }) {
return (
<Stack gap={0}>
<AdminNav />
{children}
</Stack>
);
}
export default Layout;