diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index 15d4b6f..6bdafd0 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -189,6 +189,15 @@ export function AppShell({ children }: { children: ReactNode }) {
+ {/* Desktop top toolbar */} +
+ +
+ + + + +
{NAV.filter((n) => !n.adminOnly || isAdmin).map((item) => { const active = item.to === "/" ? location.pathname === "/" : location.pathname.startsWith(item.to); @@ -212,6 +221,11 @@ export function AppShell({ children }: { children: ReactNode }) { ); })}
+
+ + + +
{children}