'use client' import { WARNA } from "@/module/_global"; import { Box, Card, Flex, Title, Group, Badge, Avatar, Text } from "@mantine/core"; import _ from "lodash"; import { useRouter } from "next/navigation"; import { MdAccountCircle } from "react-icons/md"; const dataProject = [ // { // id: 4, // title: 'Project 4', // description: 'Tempat berkumpul semua anggota / staff perbekal darmasaba', // status: 'PROSES', // color: '#C5771A' // }, // { // id: 5, // title: 'Project5', // description: 'Tempat berkumpul semua anggota / staff perbekal darmasaba', // status: 'PROSES', // color: '#C5771A' // }, { id: 6, title: 'Divisi Kemasyarakatan', total: 12 }, ] export default function ListDivisi() { const router = useRouter() return ( <> Divisi Terbaru {dataProject.map((v, i) => { return ( {_.toUpper(v.title)} PROYEK {v.total} ); })} ) }