import { Building2, Calendar, FileText, LayoutDashboard, LogOut, Music, Settings, Users, } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; import React from "react"; const navItems = [ { icon: LayoutDashboard, label: "Overview", path: "/" }, { icon: Users, label: "People", path: "#people" }, { icon: Calendar, label: "Worship & Events", path: "#events" }, { icon: Music, label: "Music & Media", path: "#music" }, { icon: FileText, label: "Changes & Logs", path: "#logs" }, { icon: Settings, label: "Settings", path: "#settings" }, ]; type SidebarProps = { open?: boolean; close: () => void; }; const Sidebar: React.FC = ({ open, close }) => { const pathName = usePathname(); return ( ); }; export default Sidebar;