import { Skeleton } from "../../ui/skeleton"; import ProductCardSkeleton from "../../Common/ProductCardSkeleton"; const FeaturedSectionsSkeleton = () => { return (
{Array.from({ length: 4 }).map((_, index) => ( ))}
); }; export default FeaturedSectionsSkeleton;