import Link from "next/link" import { LayoutDashboard, Calendar, FileBarChart, Upload, Download, Settings } from "lucide-react" const navItems = [ { href: "/dashboard", label: "Overview", icon: LayoutDashboard }, { href: "/dashboard/events", label: "Events", icon: Calendar }, { href: "/dashboard/pledges", label: "Pledges", icon: FileBarChart }, { href: "/dashboard/reconcile", label: "Reconcile", icon: Upload }, { href: "/dashboard/exports", label: "Exports", icon: Download }, { href: "/dashboard/settings", label: "Settings", icon: Settings }, ] export default function DashboardLayout({ children }: { children: React.ReactNode }) { return (
{/* Top bar */}
P
Pledge Now, Pay Later
View Public Site
{/* Sidebar */} {/* Mobile bottom nav */} {/* Main content */}
{children}
) }