'use client' import { FC } from 'react' import ProductCard from '@/components/ProductCard' import Image from 'next/image' import { Swiper, SwiperSlide } from 'swiper/react' import { SHOP_CONFIG } from '@/config/const' import { useGetLanding } from '../hooks/useHomeData' const HotOffer: FC = () => { const { data } = useGetLanding() const incredibleOffers = data?.results?.incredibleOffers || [] if (!incredibleOffers.length) { return null } return (