diff --git a/apps/web/components/AppShell.tsx b/apps/web/components/AppShell.tsx index 5af827d..634e137 100644 --- a/apps/web/components/AppShell.tsx +++ b/apps/web/components/AppShell.tsx @@ -1,7 +1,9 @@ import Link from "next/link"; import type { ReactNode } from "react"; -import { LeftNav, type ActiveNav } from "./LeftNav"; +import type { ActiveNav } from "@/lib/nav/items"; +import { LeftNav } from "./LeftNav"; +import { NavDrawer } from "./NavDrawer"; interface AppShellProps { children: ReactNode; @@ -24,7 +26,8 @@ export function AppShell({ }: AppShellProps) { return (