import React, { useState } from 'react'; import Sidebar from '../../partials/Sidebar'; import Header from '../../partials/Header'; import ShopSidebar from '../../partials/ecommerce/ShopSidebar'; import ShopCards07 from '../../partials/ecommerce/ShopCards07'; import PaginationClassic from '../../components/PaginationClassic'; function Shop2() { const [sidebarOpen, setSidebarOpen] = useState(false); return (
{/* Sidebar */} {/* Content area */}
{/* Site header */}
{/* Page header */}
{/* Title */}

Find the right product for you ✨

{/* Page content */}
{/* Sidebar */} {/* Content */}
{/* Filters */}
67.975 Items
{/* Cards 1 (Video Courses) */}
{/* Pagination */}
); } export default Shop2;