'use client' import { Badge } from '@/components/ui/badge' import { TrendingUp, Globe, Users, Award, Factory, Wheat, Star, Target } from 'lucide-react' import { motion } from 'framer-motion' export default function StatsSection() { const stats = [ { icon: Globe, value: "25+", label: "Countries Served", description: "Exporting premium Basmati rice across continents", color: "from-amber-500 to-yellow-600" }, { icon: Wheat, value: "200+", label: "MT Rice Daily", description: "Processing capacity for premium rice varieties", color: "from-yellow-500 to-orange-600" }, { icon: Users, value: "5000+", label: "Rice Farmers", description: "Direct partnerships across Punjab & Haryana rice belt", color: "from-emerald-500 to-green-600" }, { icon: Award, value: "20+", label: "Years in Rice Trade", description: "Two decades of rice expertise and quality", color: "from-orange-500 to-red-600" }, { icon: Factory, value: "99.9%", label: "Pure Rice Quality", description: "Consistent premium rice standards", color: "from-red-500 to-pink-600" }, { icon: Star, value: "10K+", label: "Rice Loving Families", description: "Households enjoying our premium rice daily", color: "from-yellow-500 to-amber-600" } ] const achievements = [ { title: "Basmati Rice Leadership", description: "Leading exporter of aged Basmati 1121 rice from Northern India", icon: Target }, { title: "Rice Quality Certifications", description: "ISO, HACCP, FSSAI certified processing facility", icon: Award }, { title: "Export Excellence", description: "Consistent export quality meeting international standards", icon: Globe }, { title: "Innovation Pioneer", description: "Advanced processing technology for superior quality", icon: TrendingUp } ] return (
{/* Background */}
{/* Animated background elements */}
{/* Section Header */} {/*
Rice Excellence

From Fields to Global Tables

Two decades of rice expertise, bringing premium Basmati and Sella varieties from Northern India's fertile plains to kitchens worldwide

*/} {/* Stats Grid */} {/*
{stats.map((stat, index) => (
{stat.value}
{stat.label}

{stat.description}

))}
*/} {/* Achievements Section */} {/*

Key Achievements

Milestones that define our commitment to excellence and industry leadership

{achievements.map((achievement, index) => (

{achievement.title}

{achievement.description}

))}
*/}
) }