upd: cleaning

Deskripsi:
- mengganti navbar new pada page detail feature
- cleaning codingan

NO Issues
This commit is contained in:
amel
2024-07-09 13:51:34 +08:00
parent 72ac553f70
commit b43ee91022
5 changed files with 8 additions and 65 deletions

View File

@@ -1,21 +0,0 @@
'use client'
import { LayoutIconBack, LayoutNavbarHome } from "@/module/_global";
import { Box, Grid, Text } from "@mantine/core";
export default function NavbarCreateAnnouncement() {
return (
<Box>
<LayoutNavbarHome>
<Grid justify='center' align='center'>
<Grid.Col span="auto">
<LayoutIconBack />
</Grid.Col>
<Grid.Col span={6}>
<Text ta={'center'} fw={'bold'} c={'white'}>Tambah Pengumuman</Text>
</Grid.Col>
<Grid.Col span="auto"></Grid.Col>
</Grid>
</LayoutNavbarHome>
</Box>
)
}

View File

@@ -1,21 +0,0 @@
'use client'
import { LayoutIconBack, LayoutNavbarHome } from "@/module/_global";
import { Box, Grid, Text } from "@mantine/core";
export default function NavbarEditAnnouncement() {
return (
<Box>
<LayoutNavbarHome>
<Grid justify='center' align='center'>
<Grid.Col span="auto">
<LayoutIconBack />
</Grid.Col>
<Grid.Col span={6}>
<Text ta={'center'} fw={'bold'} c={'white'}>Edit Pengumuman</Text>
</Grid.Col>
<Grid.Col span="auto"></Grid.Col>
</Grid>
</LayoutNavbarHome>
</Box>
)
}