import React from 'react';
import Image from 'next/image';
import { InfoIcon } from 'lucide-react';
import { Swiper, SwiperProps, SwiperSlide } from 'swiper/react';
import 'swiper/css';
import useDevice from '@/core/hooks/useDevice';
const PromotionProgram = ({ selectedPromo, onSelectPromo }) => {
const { isMobile } = useDevice();
return (
<>
{' '}
Serba Serbi Promo
{/*
onSelectPromo('Diskon')}
className={`border p-2 flex items-center gap-x-2 rounded-lg cursor-pointer ${selectedPromo === 'Diskon' ? 'bg-red-50 border-red-500 text-red-500' : 'border-gray-200 text-gray-900'}`}
>
Spesial Diskon
Harga lebih murah dan pasti makin hemat belinya..
*/}
onSelectPromo('Bundling')}
className={`border h-full p-1 flex items-center gap-x-2 rounded-lg cursor-pointer ${
selectedPromo === 'Bundling'
? 'bg-red-50 border-red-500 text-red-500'
: 'border-gray-200 text-gray-900'
}`}
>
Paket Silat
Pilihan bundling barang kombinasi Silat.
onSelectPromo('Loading')}
className={`border p-2 h-full flex items-center gap-x-2 rounded-lg cursor-pointer ${
selectedPromo === 'Loading'
? 'bg-red-50 border-red-500 text-red-500'
: 'border-gray-200 text-gray-900'
}`}
>
Paket Barong
Beli banyak barang/partai barang borong.
onSelectPromo('Merchandise')}
className={`border p-2 h-full flex items-center gap-x-2 rounded-lg cursor-pointer ${
selectedPromo === 'Merchandise'
? 'bg-red-50 border-red-500 text-red-500'
: 'border-gray-200 text-gray-900'
}`}
>
Paket Angklung
Gratis barang promosi/merchandise menang langsung.
>
);
};
export default PromotionProgram;