import React from 'react'; import { SidebarNav } from './components/sidebar-nav'; const sidebarNavItems = [ { title: "Profile", href: "/settings", }, { title: "Account", href: "/settings/account", }, { title: "Appearance", href: "/settings/appearance", }, { title: "Notifications", href: "/settings/notifications", }, { title: "Display", href: "/settings/display", }, ]; export default function SettingsLayout({ children }: { children: React.ReactNode }) { return (
Manage your account settings and set e-mail preferences.