import { Database, ShieldCheck, Table2 } from "lucide-react"; import { Button } from "@/components/ui/button"; const checks = [ { label: "Next.js 16", value: "App Router", icon: ShieldCheck, }, { label: "Prisma", value: "MariaDB introspected", icon: Database, }, { label: "TanStack Table", value: "Installed", icon: Table2, }, ]; export default function Home() { return (

choco-admin

Phase 1 initialization

{checks.map((item) => { const Icon = item.icon; return (

{item.label}

{item.value}

); })}
); }