"use client"; import type React from "react"; import { LayoutDashboard, Download, Layers, Boxes, Store, Users, Settings, LucideMail, } from "lucide-react"; import Link from "next/link"; type AdminLeftNavigationProps = { collapsed: boolean; onToggleCollapsed: () => void; }; const navItems = [ { label: "Dashboard", href: "/admin", icon: , }, { label: "Imports", href: "/admin/import-status", icon: , }, { label: "Mappings", href: "/admin/mapping", icon: , }, { label: "Products", href: "/admin/products", icon: , }, { label: "Merchants", href: "/admin/merchants", icon: , }, { label: "Platforms", href: "/admin/platforms", icon: , }, { label: "Users", href: "/admin/users", icon: , }, { label: "Settings", href: "/admin/settings", icon: , }, { label: "Manage Emails", href: "/admin/email/manage", icon: , }, { label: "Send a Email", href: "/admin/email/send", icon: , }, ]; export default function AdminLeftNavigation({ collapsed, onToggleCollapsed, }: AdminLeftNavigationProps) { return ( ); }