diff --git a/client/src/App.tsx b/client/src/App.tsx index f6fae78..3db0d47 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -5,6 +5,7 @@ import { AnalyticsPage } from '@/pages/AnalyticsPage' import { BoardPage } from '@/pages/BoardPage' import { CartablePage } from '@/pages/CartablePage' import { GetStartedPage } from '@/pages/GetStartedPage' +import { KnowledgeBasePage } from '@/pages/KnowledgeBasePage' import { LoginPage } from '@/pages/LoginPage' import { MembersPage } from '@/pages/MembersPage' import { OrgChartPage } from '@/pages/OrgChartPage' @@ -38,6 +39,7 @@ export default function App() { : } /> : } /> : } /> + : } /> } /> diff --git a/client/src/components/AppShell.tsx b/client/src/components/AppShell.tsx index 02976d1..c2d8782 100644 --- a/client/src/components/AppShell.tsx +++ b/client/src/components/AppShell.tsx @@ -2,6 +2,7 @@ import type { ReactNode } from 'react' import { Link, useLocation } from 'react-router' import { BookMarked, + BookOpen, BookUser, Bot, Boxes, @@ -45,21 +46,32 @@ export function AppShell({ children }: { children: ReactNode }) { -