From 75b6e0bae6309c207be38a322d0e7abb98551ee5 Mon Sep 17 00:00:00 2001 From: amel Date: Wed, 17 Jul 2024 16:34:58 +0800 Subject: [PATCH] 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} + + ) })}