'use client' import { motion } from 'framer-motion' import { Truck, Package, Users, Factory, Globe, Shield, Clock, CheckCircle, Calculator, Phone, Mail, Download, ArrowRight, Warehouse, Scale, Target } from 'lucide-react' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Label } from '@/components/ui/label' import { Textarea } from '@/components/ui/textarea' import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select' import PageHero from '@/components/sections/PageHero' export default function BulkSupplyPage() { const bulkProducts = [ { id: 1, name: 'Premium Basmati Rice', category: 'Rice & Grains', minOrder: '25 MT', pricing: '₹85-95/kg', packaging: '25kg, 50kg PP Bags', specifications: 'Extra Long Grain, Aged 2+ Years', image: '/api/placeholder/300/200', features: ['Export Quality', 'Sortex Cleaned', 'Moisture <12%'] }, { id: 2, name: 'Golden Sella Basmati', category: 'Rice & Grains', minOrder: '20 MT', pricing: '₹78-88/kg', packaging: '25kg, 50kg PP Bags', specifications: 'Parboiled, Golden Color', image: '/api/placeholder/300/200', features: ['Non-Sticky', 'Longer Shelf Life', 'Uniform Color'] }, { id: 5, name: 'Wheat Flour', category: 'Flour & Grains', minOrder: '50 MT', pricing: '₹28-35/kg', packaging: '25kg, 50kg PP Bags', specifications: 'Protein 11-12%, Ash <0.60%', image: '/api/placeholder/300/200', features: ['Fortified', 'Pest Free', 'Uniform Texture'] }, ] const services = [ { icon: Factory, title: 'Custom Processing', description: 'Tailored processing solutions to meet your specific requirements and quality standards.', features: ['Custom Grading', 'Special Packaging', 'Quality Specifications'] }, { icon: Truck, title: 'Logistics Support', description: 'End-to-end logistics solutions from our facility to your destination worldwide.', features: ['Container Loading', 'Documentation', 'Tracking Support'] }, { icon: Shield, title: 'Quality Assurance', description: 'Comprehensive quality control with certifications and testing at every stage.', features: ['Pre-shipment Inspection', 'Quality Certificates', 'Sample Approval'] }, { icon: Globe, title: 'Export Services', description: 'Complete export facilitation with international compliance and documentation.', features: ['Export Documentation', 'Phytosanitary Certificates', 'COO Certificates'] } ] const advantages = [ { icon: Scale, title: 'Competitive Pricing', description: 'Direct from manufacturer pricing with volume-based discounts.', value: 'Up to 15% Savings' }, { icon: Clock, title: 'Quick Turnaround', description: 'Fast processing and delivery to meet your timeline requirements.', value: '7-14 Days Delivery' }, { icon: CheckCircle, title: 'Quality Guarantee', description: 'Assured quality with money-back guarantee on specifications.', value: '100% Quality Assurance' }, { icon: Target, title: 'Flexible Terms', description: 'Customizable payment and delivery terms for long-term partnerships.', value: 'Flexible Payment Terms' } ] const specifications = [ { parameter: 'Minimum Order Quantity', value: '3-50 MT (Product Dependent)', icon: Package }, { parameter: 'Payment Terms', value: 'LC, TT, or Advance Payment', icon: Calculator }, { parameter: 'Delivery Time', value: '7-21 Days from Order Confirmation', icon: Clock }, { parameter: 'Packaging Options', value: 'PP Bags, Jute Bags, Cartons, Bulk', icon: Warehouse }, { parameter: 'Quality Standards', value: 'FSSAI, ISO 22000, HACCP Certified', icon: Shield }, { parameter: 'Documentation', value: 'COA, COO, Phytosanitary Available', icon: CheckCircle } ] return (
{/* Hero Section */} {/* Bulk Products Grid */}

Bulk Product Portfolio

Premium quality products available in bulk quantities with competitive pricing and flexible terms.

{bulkProducts.map((product, index) => (
{product.category}
{product.name}
Min Order: {product.minOrder}
Pricing Range {product.pricing}
Packaging {product.packaging}
Specifications

{product.specifications}

{product.features.map((feature, idx) => ( {feature} ))}
))}
{/* Services Section */}

Comprehensive Services

End-to-end support for your bulk procurement needs with professional service excellence.

{services.map((service, index) => { const IconComponent = service.icon return (

{service.title}

{service.description}

{service.features.map((feature, featureIndex) => (
{feature}
))}
) })}
{/* Advantages Section */}

Why Choose Our Bulk Supply?

Competitive advantages that make us your preferred bulk supply partner.

{advantages.map((advantage, index) => { const IconComponent = advantage.icon return (

{advantage.title}

{advantage.description}

{advantage.value}
) })}
{/* Specifications Table */}

Order Specifications

Complete order guidelines and specifications for bulk procurement.

{specifications.map((spec, index) => { const IconComponent = spec.icon return (

{spec.parameter}

{spec.value}

) })}
{/* Quote Request Form */}

Request Bulk Quote

Get competitive pricing for your bulk requirements. Our team will respond within 24 hours.