diff --git a/frontend/src/components/Layout/ListRow.tsx b/frontend/src/components/Layout/ListRow.tsx index 30a155e..3c50446 100644 --- a/frontend/src/components/Layout/ListRow.tsx +++ b/frontend/src/components/Layout/ListRow.tsx @@ -32,7 +32,7 @@ const ListItem: React.FC = ({ className="flex flex-col bg-gray-800 rounded-lg overflow-hidden cursor-pointer hover:bg-gray-700 transition-colors" onClick={onItemClick} > -
+
{thumbnail ? ( = ({ const [showAuthModal, setShowAuthModal] = useState(false); const { isLoggedIn } = useAuth(); const isVideoPage = location.pathname.includes("/EduGuru"); + const [showSideBar, setShowSideBar] = useState(false); useEffect(() => { if (showAuthModal) { @@ -49,6 +50,10 @@ const Navbar: React.FC = ({ }); }; + const handleSideBar = () => { + setShowSideBar(!showSideBar); + } + return (