diff --git a/apps/web/app/terminal.tsx b/apps/web/app/terminal.tsx index 8419290..7a66d5b 100644 --- a/apps/web/app/terminal.tsx +++ b/apps/web/app/terminal.tsx @@ -1,5 +1,6 @@ "use client"; +import Link from "next/link"; import { usePathname } from "next/navigation"; import { createContext, @@ -7000,13 +7001,13 @@ export function TerminalAppShell({ children }: { children: ReactNode }) { {NAV_ITEMS.map((item) => { const active = pathname === item.href; return ( - {item.label} - + ); })}