// app/settings/layout.tsx import { SettingsNav } from "@/components/settings-nav"; import { Separator } from "@/components/ui/separator"; const sidebarNavItems = [ { title: "Profile", href: "/settings/profile", }, // You can add more links here later, e.g., "Account", "API Keys" ]; export default function SettingsLayout({ children, }: { children: React.ReactNode; }) { return (

Settings

Manage your account settings and profile.

{children}
); }