From 98e6f3278eea264efdfe0c1ecdf97a5caf7a4b54 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 03:13:08 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/app-shell.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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}