diff --git a/client/src/App.tsx b/client/src/App.tsx index 0f26b6b..3630ea6 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -2,6 +2,7 @@ import { Navigate, Route, Routes } from 'react-router' import { Toaster } from '@/components/ui/sonner' import { BoardPage } from '@/pages/BoardPage' import { LoginPage } from '@/pages/LoginPage' +import { ReviewsPage } from '@/pages/ReviewsPage' import { SeatsPage } from '@/pages/SeatsPage' import { useAuth } from '@/store/auth' @@ -14,6 +15,7 @@ export default function App() { : } /> : } /> : } /> + : } /> } /> diff --git a/client/src/components/AppShell.tsx b/client/src/components/AppShell.tsx index d50714c..422074d 100644 --- a/client/src/components/AppShell.tsx +++ b/client/src/components/AppShell.tsx @@ -1,6 +1,6 @@ import type { ReactNode } from 'react' import { Link, useLocation } from 'react-router' -import { Bot, Inbox, type LucideIcon, LayoutDashboard, LogOut, Network } from 'lucide-react' +import { Bot, Inbox, type LucideIcon, LayoutDashboard, LogOut, Network, ShieldCheck } from 'lucide-react' import { Button } from '@/components/ui/button' import { Separator } from '@/components/ui/separator' import { cn } from '@/lib/utils' @@ -28,6 +28,7 @@ export function AppShell({ children }: { children: ReactNode }) { diff --git a/client/src/components/ui/textarea.tsx b/client/src/components/ui/textarea.tsx new file mode 100644 index 0000000..a05ed13 --- /dev/null +++ b/client/src/components/ui/textarea.tsx @@ -0,0 +1,18 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +function Textarea({ className, ...props }: React.ComponentProps<"textarea">) { + return ( +