import { Swiper, SwiperSlide } from "swiper/react";
import ProductCard from "./ProductCard";
import "swiper/css";
import Image from "../elements/Image";
import Link from "../elements/Link";
import { SkeletonProduct } from "../elements/Skeleton";
export default function ProductSlider({
products,
bannerMode = false
}) {
return (
<>
{ bannerMode && (
) }
{ bannerMode && (
) }
{products?.products?.map((product, index) => (
))}
{ !products ? : ''}
>
)
}