From 1d3865c8fcbc02318cad30d9024571e51eb047b4 Mon Sep 17 00:00:00 2001 From: dirtydishes Date: Wed, 6 May 2026 23:42:35 -0400 Subject: [PATCH] Fix Tape navigation from home --- apps/web/app/terminal.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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} - + ); })}