diff --git a/components/Navbar.tsx b/components/Navbar.tsx index 1e56789..671db62 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -2,7 +2,7 @@ import { motion, AnimatePresence } from "framer-motion"; import { Button } from "@/components/ui/button"; -import { Heart, Menu, X, LogOut } from "lucide-react"; +import { Heart, Menu, X, LogOut, LayoutGrid } from "lucide-react"; import { ThemeToggle } from "@/components/ThemeToggle"; import { useEffect, useState } from "react"; import { LoginDialog } from "@/components/LoginDialog"; @@ -139,15 +139,24 @@ export function Navbar() { )} {isAuthenticated && ( - + <> + + + Dashboard + + + )} @@ -244,16 +253,26 @@ export function Navbar() { )} {isAuthenticated && ( - + <> + setMobileMenuOpen(false)} + className={`text-left text-sm sm:text-base font-medium py-2.5 sm:py-3 px-3 sm:px-4 rounded-lg transition-colors flex items-center gap-2 ${isDark ? 'text-gray-300 hover:bg-gray-800' : 'text-gray-700 hover:bg-gray-100'}`} + > + + Dashboard + + + )}