diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx index 64fdfc6..e5ece9b 100644 --- a/frontend/app/layout.tsx +++ b/frontend/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import Sidebar from "@/components/Sidebar"; +import Link from "next/link"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"] }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"] }); @@ -17,9 +18,22 @@ export default function RootLayout({ children }: Readonly<{ children: React.Reac