UI Admin Keamanan

This commit is contained in:
2025-05-23 11:33:59 +08:00
parent cab86eb02f
commit ee9368e911
57 changed files with 978 additions and 430 deletions

View File

@@ -1,11 +1,28 @@
import React from 'react';
import colors from "@/con/colors";
import { Box, Button, Group, Paper, SimpleGrid, Stack, Title } from "@mantine/core";
import CreateLaporanPublik from "./create/createLaporan";
import ListDataLaporanPublik from "./listData/page";
function Page() {
export default function Page() {
return (
<div>
laporan-publik
</div>
);
}
export default Page;
<Stack gap={"xs"}>
<SimpleGrid cols={{ base: 1, md: 2 }}>
<Box>
<Paper bg={colors['white-1']} p={'md'} radius={10}>
<Title order={3}>Laporan Publik</Title>
<CreateLaporanPublik/>
<Group>
<Button
mt={10}
bg={colors['blue-button']}
>
Submit
</Button>
</Group>
</Paper>
</Box>
<ListDataLaporanPublik/>
</SimpleGrid>
</Stack>
)
}