"use client"; import { Card, CardContent } from "@/components/ui/card"; const categories = [ { name: "Investment", total: 45 }, { name: "Technology", total: 32 }, { name: "Partnership", total: 28 }, { name: "Report", total: 23 }, { name: "Event", total: 19 }, { name: "CSR", total: 15 }, ]; export default function ContentCategory() { return (
{/* ===== Title ===== */}

Kategori Konten

{/* ===== Card ===== */} {categories.map((item, index) => (
{/* Left */}
{/* Bullet */}
{item.name}
{/* Right total */} {item.total}
))}
); }