diff --git a/src/Layout.tsx b/src/Layout.tsx index 8bfe866..068bfc1 100644 --- a/src/Layout.tsx +++ b/src/Layout.tsx @@ -1,16 +1,38 @@ import ThemeToggle from "@/components/theme-toggle"; +import { Link, useLocation } from "react-router-dom"; +import { Home, Settings } from "lucide-react"; +import { Button } from "@/components/ui/button"; export default function Layout({ children }: { children: React.ReactNode }) { + const location = useLocation(); + return (