import React from 'react'; import { motion } from 'framer-motion'; import { Leaf, ShieldCheck, Truck, Award, Star, Users, Clock, ThumbsUp } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Link } from 'react-router-dom'; const featureItems = [ { icon: , title: "100% Certified Organic Ingredients", description: "Ethically sourced from premium farms across 12+ regions, ensuring maximum flavor potency and 0% artificial additives in every package.", stat: "100%", statLabel: "Organic" }, { icon: , title: "Triple-Verified Quality Assurance", description: "Every batch undergoes 3-stage laboratory testing for purity, potency, and freshness, exceeding industry standards by 35%.", stat: "3-Stage", statLabel: "Testing" }, { icon: , title: "Fast Delivery Everywhere", description: "Vacuum-sealed packaging preserves peak freshness during transit, with 99.8% on-time delivery across India and temperature-controlled shipping.", stat: "Fast", statLabel: "Delivery" }, { icon: , title: "4.9/5 Customer Satisfaction", description: "Join our community of 2000 satisfied customers who trust us for authentic flavors, backed by our 30-day freshness guarantee.", stat: "4.9/5", statLabel: "Rating" }, ]; const testimonialSnippets = [ { text: "The freshest spices I've ever used!", author: "Priya M." }, { text: "Transformed my cooking overnight", author: "Rahul S." }, { text: "Worth every rupee, authentic taste", author: "Ananya K." }, ]; const FeaturesSection = () => { const cardVariants = { hidden: { opacity: 0, y: 30 }, visible: (i) => ({ opacity: 1, y: 0, transition: { delay: i * 0.15, duration: 0.5, ease: "easeOut", }, }), }; return (
{/* Testimonial Ticker */}
{[...testimonialSnippets, ...testimonialSnippets].map((snippet, index) => ( "{snippet.text}" - {snippet.author} ))}

Why Choose Taste Rider?

Trusted by 2000 customers nationwide

Trusted by professional chefs and home cooking enthusiasts alike for our commitment to excellence in every aspect of our service.

{featureItems.map((feature, index) => ( {/* Feature Stat Badge */}
{feature.stat}
{feature.icon}
{feature.title}

{feature.description}

{/* Feature Stat */}
{feature.stat}
{feature.statLabel}
))}
{/* CTA Section */}

Experience the Taste Rider Difference Today!

Join thousands of satisfied customers who have elevated their culinary creations with our premium spices.

); }; export default FeaturesSection;