upd: pengumuman

Deskripsi:
- tambah pengumuman
- detail pengumuman
- edit pengumuman

No Issues
This commit is contained in:
amel
2024-07-05 14:59:58 +08:00
parent ea9f0be5ea
commit 0e36aca193
10 changed files with 239 additions and 3 deletions

View File

@@ -0,0 +1,37 @@
import { Box, Group, Stack, Text } from "@mantine/core";
import { BsCardText } from "react-icons/bs";
import { TfiAnnouncement } from "react-icons/tfi";
export default function DetailAnnouncement() {
return (
<Box py={30} px={20}>
<Box p={20} style={{ borderRadius: 10, border: '1px solid #E5E5E5' }} bg={'white'} >
<Stack>
<Group>
<TfiAnnouncement size={25} />
<Text fw={'bold'}>Pengumuman Dinas</Text>
</Group>
<Group>
<BsCardText size={25} />
<Text>Pengumuman agar menggunakan</Text>
</Group>
</Stack>
</Box>
<Box my={15} p={20} style={{ borderRadius: 10, border: '1px solid #E5E5E5' }} bg={'white'} >
<Stack>
<Text fw={'bold'}>Anggota</Text>
<Group>
<Text>LPD</Text>
</Group>
<Group>
<Text>PKK</Text>
</Group>
<Group>
<Text>Karang Taruna</Text>
</Group>
</Stack>
</Box>
</Box>
)
}