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,14 +1,12 @@
import { LayoutNavbarNew, WARNA } from "@/module/_global";
import { Box, Stack, TextInput, Button, Textarea } from "@mantine/core";
import { HiOutlineChevronRight, HiUser } from "react-icons/hi2";
import { Box } from "@mantine/core";
import CreateAnnouncement from "../component/create_announcement";
export default function ViewCreateAnnouncement() {
return (
<Box>
{/* <NavbarCreateAnnouncement /> */}
<LayoutNavbarNew back="" title="Tambah Pengumuman" menu={<></>} />
<CreateAnnouncement/>
<CreateAnnouncement />
</Box>
)
}

View File

@@ -1,12 +1,10 @@
import { Box, Button, Stack, Textarea, TextInput } from "@mantine/core";
import { LayoutNavbarNew, WARNA } from "@/module/_global";
import { HiOutlineChevronRight } from "react-icons/hi2";
import { Box } from "@mantine/core";
import { LayoutNavbarNew } from "@/module/_global";
import EditAnnouncement from "../component/edit_announcement";
export default function ViewEditAnnouncement({ data }: { data: string }) {
return (
<Box>
{/* <NavbarEditAnnouncement /> */}
<LayoutNavbarNew back="" title="Edit Pengumuman" menu={<></>} />
<EditAnnouncement />
</Box>