Revisi Tampilan Admin

# fix :
- Tampilan Donasi
# feat :
- Penambahan App Information
## No Issuee
This commit is contained in:
2024-06-06 12:05:06 +08:00
parent 5b8cd3a4b6
commit 0e16d6501f
295 changed files with 2861 additions and 918 deletions

View File

@@ -1,6 +1,6 @@
"use client";
import { ActionIcon, AppShell, Box, Group, Header, Stack } from "@mantine/core";
import { ActionIcon, Box, Stack } from "@mantine/core";
import { IconChevronLeft } from "@tabler/icons-react";
import { useRouter } from "next/navigation";
import React from "react";
@@ -32,29 +32,3 @@ export default function LayoutValidasi({
);
}
// export default function LayoutValidasi({
// children,
// }: {
// children: React.ReactNode;
// }) {
// const router = useRouter()
// return (
// <>
// <AppShell
// bg={"red"}
// header={
// <Header height={50} sx={{borderStyle: "none"}} px={"md"} bg={"yellow"}>
// <Group h={50} align="center">
// <ActionIcon variant="transparent" onClick={() => router.back()} >
// <IconChevronLeft />
// </ActionIcon>
// </Group>
// </Header>
// }
// >
// {children}
// </AppShell>
// </>
// );
// }