"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { User, Shield, Bot, Bell, Apple, Key, Webhook } from "lucide-react"; import { cn } from "@/lib/utils"; const NAV_ITEMS = [ { href: "/settings", label: "Profile", icon: User, exact: true }, { href: "/settings/security", label: "Security", icon: Shield }, { href: "/settings/ai", label: "AI & Models", icon: Bot }, { href: "/settings/notifications", label: "Notifications", icon: Bell }, { href: "/settings/nutrition", label: "Nutrition", icon: Apple }, { href: "/settings/api-keys", label: "API Keys", icon: Key }, { href: "/settings/webhooks", label: "Webhooks", icon: Webhook }, ]; export function SettingsSidebar() { const pathname = usePathname(); return ( ); }