diff --git a/src/app/dev/dashboard-admin/layout.tsx b/src/app/dev/dashboard-admin/layout.tsx new file mode 100644 index 00000000..3db5190a --- /dev/null +++ b/src/app/dev/dashboard-admin/layout.tsx @@ -0,0 +1,64 @@ +"use client"; +import { + AppShell, + Box, + Burger, + Button, + Flex, + Group, + Header, + MediaQuery, + Menu, + Text, + useMantineTheme, +} from "@mantine/core"; +import router from "next/router"; +import { useState } from "react"; + +export default function LayoutDashboardAdmin({ + children, +}: { + children: React.ReactNode; +}) { + const theme = useMantineTheme(); + const [opened, setOpened] = useState(false); + + return ( + <> + +
+ + setOpened((o) => !o)} + size="sm" + color={theme.colors.gray[6]} + mr="xl" + /> + + + + Dashboard Admin + + +
+ + } + > + {children} +
+ + ); +} diff --git a/src/app/dev/dashboard-admin/page.tsx b/src/app/dev/dashboard-admin/page.tsx new file mode 100644 index 00000000..95685c8b --- /dev/null +++ b/src/app/dev/dashboard-admin/page.tsx @@ -0,0 +1,7 @@ +import DashboardAdmin from "@/modules/dashboard_admin"; + +export default function PageDashboardAdmin(){ + return <> + + +} \ No newline at end of file