"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { FileText, FolderArchive, Settings, Building2, Globe, PiggyBank, } from "lucide-react"; import { cn } from "@/lib/utils"; import { Separator } from "@/components/ui/separator"; import { Button } from "@/components/ui/button"; import { HistoricalReferences } from "@/components/historical-references"; const QUICK_LINKS = [ { label: "国家税务总局门户", href: "https://www.chinatax.gov.cn", icon: Building2 }, { label: "电子税务局", href: "https://etax.chinatax.gov.cn", icon: Globe }, { label: "公积金管理中心", href: "https://www.12329.com.cn", icon: PiggyBank }, ]; export function AppSidebar() { const pathname = usePathname(); const nav = [ { href: "/workspace", label: "需求与方案", icon: FileText }, { href: "/finance", label: "财务归档", icon: FolderArchive }, { href: "/settings", label: "设置", icon: Settings }, ]; return ( ); }