upd: profile

Deskripsi:
- membuat routing profile
- membuat view profile

- mengganti routing menjadi window

No Issues
This commit is contained in:
amel
2024-07-03 17:29:29 +08:00
parent 313d39bfc6
commit 612cde50bf
10 changed files with 65 additions and 20 deletions

View File

@@ -0,0 +1,3 @@
import ViewProfile from "./profile/view/view_profile";
export { ViewProfile }

View File

@@ -0,0 +1,29 @@
import { LayoutNavbarHome, WARNA } from "@/module/_global";
import { ActionIcon, Group, Stack, Text } from "@mantine/core";
import { BsInfo } from "react-icons/bs";
import { HiUser } from "react-icons/hi2";
export default function ViewProfile() {
return (
<>
<LayoutNavbarHome>
<Group justify="space-between">
<Text fw={'bold'} c={'white'}>Profile</Text>
<ActionIcon variant="light" bg={WARNA.bgIcon} size="lg" radius="lg" aria-label="Info">
<BsInfo size={20} color='white' />
</ActionIcon>
</Group>
<Stack
align="center"
justify="center"
gap="xs"
>
<HiUser size={150} color='white' />
<Text c={'white'} fw={'bold'} fz={25}>Fibra Marcell</Text>
<Text c={'white'} fw={'lighter'} fz={15}>Kepala Urusan Pengembangan</Text>
</Stack>
</LayoutNavbarHome>
</>
)
}