2026-01-01 01:47:24 +01:00
|
|
|
import { AppContent } from '@/components/AppContent';
|
|
|
|
|
import { AppShell } from '@/components/AppShell';
|
|
|
|
|
import { AppSidebar } from '@/components/AppSidebar';
|
|
|
|
|
import { AppSidebarHeader } from '@/components/AppSidebarHeader';
|
2025-12-29 17:17:35 +01:00
|
|
|
import { type BreadcrumbItem } from '@/types';
|
|
|
|
|
import { type PropsWithChildren } from 'react';
|
|
|
|
|
|
|
|
|
|
export default function AppSidebarLayout({
|
|
|
|
|
children,
|
|
|
|
|
breadcrumbs = [],
|
|
|
|
|
}: PropsWithChildren<{ breadcrumbs?: BreadcrumbItem[] }>) {
|
|
|
|
|
return (
|
|
|
|
|
<AppShell variant="sidebar">
|
|
|
|
|
<AppSidebar />
|
|
|
|
|
<AppContent variant="sidebar" className="overflow-x-hidden">
|
|
|
|
|
<AppSidebarHeader breadcrumbs={breadcrumbs} />
|
|
|
|
|
{children}
|
|
|
|
|
</AppContent>
|
|
|
|
|
</AppShell>
|
|
|
|
|
);
|
|
|
|
|
}
|