import { Outlet } from '@tanstack/react-router' import { IconBrowserCheck, IconNotification, IconPalette, IconTool, IconUser, } from '@tabler/icons-react' import { Separator } from '@/components/ui/separator' import { Header } from '@/components/layout/header' import { Main } from '@/components/layout/main' import { ProfileDropdown } from '@/components/profile-dropdown' import { Search } from '@/components/search' import { ThemeSwitch } from '@/components/theme-switch' import SidebarNav from './components/sidebar-nav' export default function Settings() { return ( <> {/* ===== Top Heading ===== */} Settings Manage your account settings and set e-mail preferences. > ) } const sidebarNavItems = [ { title: 'Profile', icon: , href: '/settings', }, { title: 'Account', icon: , href: '/settings/account', }, { title: 'Appearance', icon: , href: '/settings/appearance', }, { title: 'Notifications', icon: , href: '/settings/notifications', }, { title: 'Display', icon: , href: '/settings/display', }, ]
Manage your account settings and set e-mail preferences.