diff --git a/Frontend/src/components/Layout.jsx b/Frontend/src/components/Layout.jsx index 4d237a2..95373ff 100644 --- a/Frontend/src/components/Layout.jsx +++ b/Frontend/src/components/Layout.jsx @@ -9,18 +9,16 @@ import { LogOut, Menu, X, - Bell, ChevronDown, Sun, Moon } from 'lucide-react'; export default function Layout({ children }) { - const { user, logout, notifications, unreadCount, theme, setTheme } = useStore(); + const { user, logout, theme, setTheme } = useStore(); const navigate = useNavigate(); const location = useLocation(); const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false); - const [isProfileOpen, setIsProfileOpen] = useState(false); const handleLogout = () => { logout(); @@ -153,21 +151,11 @@ export default function Layout({ children }) { {theme === 'dark' ? : } - {/* Notifications */} -
- -
- {/* User Profile */}