Files
pulse/app/sites/[id]/SiteLayoutShell.tsx
Usman Baig 80ae8311dc feat: static header + collapsible sidebar navigation
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.
2026-03-18 15:30:27 +01:00

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>
)
}