mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 14:06:15 +00:00
36 lines
888 B
TypeScript
36 lines
888 B
TypeScript
import { type BreadcrumbItem, type NavItem } from '@/types';
|
|
import { ListIcon, UserIcon, UsersIcon } from 'lucide-react';
|
|
import { ReactNode } from 'react';
|
|
import Layout from '@/layouts/app/layout';
|
|
|
|
const sidebarNavItems: NavItem[] = [
|
|
{
|
|
title: 'Profile',
|
|
href: route('profile'),
|
|
icon: UserIcon,
|
|
},
|
|
{
|
|
title: 'Users',
|
|
href: route('users'),
|
|
icon: UsersIcon,
|
|
},
|
|
{
|
|
title: 'Projects',
|
|
href: route('projects'),
|
|
icon: ListIcon,
|
|
},
|
|
];
|
|
|
|
export default function SettingsLayout({ children, breadcrumbs }: { children: ReactNode; breadcrumbs?: BreadcrumbItem[] }) {
|
|
// When server-side rendering, we only render the layout on the client...
|
|
if (typeof window === 'undefined') {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Layout breadcrumbs={breadcrumbs} secondNavItems={sidebarNavItems} secondNavTitle="Settings">
|
|
{children}
|
|
</Layout>
|
|
);
|
|
}
|