'use client'; import type { ReactNode } from 'react'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { Brain, FileCog, Github, ServerCog, Shield, User } from 'lucide-react'; import { cn } from '@spoon/ui'; const settingsItems = [ { href: '/settings/profile', label: 'Profile', icon: User }, { href: '/settings/integrations', label: 'Integrations', icon: Github }, { href: '/settings/ai-providers', label: 'AI providers', icon: Brain }, { href: '/settings/dotfiles', label: 'Dotfiles', icon: FileCog }, { href: '/settings/worker', label: 'Worker', icon: ServerCog }, { href: '/settings/security', label: 'Security', icon: Shield }, ]; const SettingsLayout = ({ children }: { children: ReactNode }) => { const pathname = usePathname(); return (

Settings

Account, provider, AI, and security controls for this Spoon workspace.

{children}
); }; export default SettingsLayout;