From 75b6e0bae6309c207be38a322d0e7abb98551ee5 Mon Sep 17 00:00:00 2001 From: amel Date: Wed, 17 Jul 2024 16:34:58 +0800 Subject: [PATCH 1/5] upd: notifikasi Deskripsi: design list notifikasi No Issues --- .../home/components/list_notification.tsx | 32 +++++++++---------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/src/module/home/components/list_notification.tsx b/src/module/home/components/list_notification.tsx index fec0182..4295857 100644 --- a/src/module/home/components/list_notification.tsx +++ b/src/module/home/components/list_notification.tsx @@ -3,7 +3,7 @@ import { WARNA } from '@/module/_global'; import { ActionIcon, Box, Center, Grid, Group, Text } from '@mantine/core'; import { useRouter } from 'next/navigation'; import React from 'react'; -import { HiUser } from 'react-icons/hi2'; +import { FaBell } from 'react-icons/fa6'; const dataNotification = [ { @@ -69,23 +69,21 @@ export default function ListNotification() { {dataNotification.map((v, i) => { return ( - - - - - - - - + + + + + + {v.title} - {v.description} - - - + + {v.description} + + ) })} From 5171b340b7ec509e28a61e54a6ac6df3a6f6e340 Mon Sep 17 00:00:00 2001 From: amel Date: Wed, 17 Jul 2024 16:55:46 +0800 Subject: [PATCH 2/5] upd: view profile Deskripsi: - nambah pilih gender pada edit profile - nambah info gender pada halaman profile No Issues --- src/module/user/profile/component/edit_profile.tsx | 13 ++++++++++++- src/module/user/profile/view/view_profile.tsx | 8 ++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/src/module/user/profile/component/edit_profile.tsx b/src/module/user/profile/component/edit_profile.tsx index 311f698..30d9b22 100644 --- a/src/module/user/profile/component/edit_profile.tsx +++ b/src/module/user/profile/component/edit_profile.tsx @@ -1,6 +1,6 @@ "use client" import { LayoutNavbarNew, WARNA } from "@/module/_global"; -import { Box, Button, Flex, Modal, Stack, Text, TextInput } from "@mantine/core"; +import { Box, Button, Flex, Modal, Select, Stack, Text, TextInput } from "@mantine/core"; import { HiUser } from "react-icons/hi2"; import toast from "react-hot-toast"; import LayoutModal from "@/module/_global/layout/layout_modal"; @@ -72,6 +72,17 @@ export default function EditProfile() { }, }} /> + + - +