"use client"; import { Bell, Key, Lock, User } from "lucide-react"; import clsx from "clsx"; const navigation = [ { name: "Profile", icon: User, href: "#profile" }, { name: "Security", icon: Lock, href: "#security" }, { name: "API Keys", icon: Key, href: "#api-keys" }, { name: "Notifications", icon: Bell, href: "#notifications" }, ]; interface SettingsNavProps { activeSection: string; onSectionChange: (section: string) => void; } export function SettingsNav({ activeSection, onSectionChange }: SettingsNavProps) { return ( ); }