upd: profile
Deskripsi: - membuat routing profile - membuat view profile - mengganti routing menjadi window No Issues
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
import ViewProfile from "./profile/view/view_profile";
|
||||
|
||||
export { ViewProfile }
|
||||
29
src/module/user/profile/view/view_profile.tsx
Normal file
29
src/module/user/profile/view/view_profile.tsx
Normal 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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user