import React from "react"; import { Skeleton } from "../../components/Skeleton"; export default function ShopLoading() { return (
{/* Banner Skeleton */}
{/* Filters & Search Row */}
{/* Product Cards Grid */}
{Array.from({ length: 8 }).map((_, i) => (
))}
); }