diff --git a/src/components/navbar.tsx b/src/components/navbar.tsx index 1a386ab..e0ed4d5 100644 --- a/src/components/navbar.tsx +++ b/src/components/navbar.tsx @@ -1,4 +1,5 @@ import { ChevronDown, ExternalLink, LogOut } from "lucide-react" +import { useNavigate } from "@tanstack/react-router" import { BrandLockup } from "@/components/brand-lockup" import { DropdownMenu, @@ -13,6 +14,7 @@ import { useAuth } from "@/lib/auth" export function Navbar() { const auth = useAuth() + const navigate = useNavigate() return (