"use client"; import Link from "next/link"; import { NAV } from "@/lib/nav"; import { Card, PageHeader } from "@/components/ui"; export default function DashboardHome() { const sections = NAV.filter((s) => s.label !== "میزکار"); return (
{sections.map((section) => { const Icon = section.icon; return (

{section.label}

{section.items.map((item) => ( {item.label} ))}
); })}
); }