Replace floating pill header with static variant for authenticated views. Add collapsible sidebar with site picker, grouped navigation (Analytics/Infrastructure), and mobile overlay drawer. Remove horizontal SiteNav tab bar.
18 lines
294 B
TypeScript
18 lines
294 B
TypeScript
'use client'
|
|
|
|
import DashboardShell from '@/components/dashboard/DashboardShell'
|
|
|
|
export default function SiteLayoutShell({
|
|
siteId,
|
|
children,
|
|
}: {
|
|
siteId: string
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<DashboardShell siteId={siteId}>
|
|
{children}
|
|
</DashboardShell>
|
|
)
|
|
}
|