import { Truck, RefreshCw, Shield, HeadphonesIcon, CreditCard, Gift } from 'lucide-react'; const incentives = [ { icon: Truck, title: 'จัดส่งฟรี', description: 'สั่งซื้อ 500 บาทขึ้นไป จัดส่งฟรีทั่วประเทศ' }, { icon: RefreshCw, title: 'คืนสินค้าได้', description: 'ยกเลิกหรือเปลี่ยนสินค้าภายใน 7 วัน' }, { icon: Shield, title: 'สินค้าคุณภาพ', description: 'ตรวจสอบคุณภาพก่อนส่งทุกชิ้น' }, { icon: HeadphonesIcon, title: 'ติดต่อง่าย', description: 'พร้อมตอบคำถาม 24 ชั่วโมง' }, { icon: CreditCard, title: 'ชำระเงินปลอดภัย', description: 'รองรับบัตรเครดิต, QR Code, โอนเงิน' }, { icon: Gift, title: 'ส่วนลดพิเศษ', description: 'สมัครสมาชิกรับส่วนลด exclusive' } ]; export default function IncentiveLarge() { return (
{incentives.map((item, i) => (

{item.title}

{item.description}

))}
); }