import { useState } from 'react' import SeedCard from './SeedCard' export default function Seeds({ onInquiry }) { const seeds = [ { id: 1, name: 'Basmati Rice', hindiName: 'बासमती चावल', category: 'धान', icon: '🌾', price: 280, unit: 'kg', yield: '40-45 quintal/acre', duration: '120-140 दिन', season: 'खरीफ' }, { id: 2, name: 'Wheat', hindiName: 'गेहूं', category: 'गेहूं', icon: '🌾', price: 320, unit: 'quintal', yield: '50-55 quintal/acre', duration: '120-150 दिन', season: 'रबी' }, { id: 3, name: 'Maize', hindiName: 'मक्का', category: 'मक्का', icon: '🌽', price: 250, unit: 'kg', yield: '30-35 quintal/acre', duration: '90-110 दिन', season: 'खरीफ/रबी' }, { id: 4, name: 'Moong Dal', hindiName: 'मूंग दाल', category: 'दालें', icon: '🫘', price: 180, unit: 'kg', yield: '8-10 quintal/acre', duration: '60-70 दिन', season: 'खरीफ/ज़ायद' }, { id: 5, name: 'Arhar Dal', hindiName: 'अरहर दाल', category: 'दालें', icon: '🫘', price: 220, unit: 'kg', yield: '12-15 quintal/acre', duration: '150-180 दिन', season: 'खरीफ' }, { id: 6, name: 'Mustard', hindiName: 'सरसों', category: 'तेल', icon: '🌼', price: 450, unit: 'quintal', yield: '12-15 quintal/acre', duration: '130-150 दिन', season: 'रबी' }, { id: 7, name: 'Tomato', hindiName: 'टमाटर', category: 'सब्जी', icon: '🍅', price: 1500, unit: 'packet', yield: '200-250 quintal/acre', duration: '90-120 दिन', season: 'साल भर' }, { id: 8, name: 'Onion', hindiName: 'प्याज', category: 'सब्जी', icon: '🧅', price: 800, unit: 'packet', yield: '150-200 quintal/acre', duration: '90-120 दिन', season: 'रबी' }, { id: 9, name: 'Potato', hindiName: 'आलू', category: 'सब्जी', icon: '🥔', price: 1200, unit: 'quintal', yield: '150-200 quintal/acre', duration: '90-120 दिन', season: 'रबी' }, { id: 10, name: 'Cotton', hindiName: 'कपास', category: 'कपास', icon: '☁️', price: 750, unit: 'packet', yield: '15-20 quintal/acre', duration: '150-180 दिन', season: 'खरीफ' }, { id: 11, name: 'Soybean', hindiName: 'सोयाबीन', category: 'दालें', icon: '🫘', price: 380, unit: 'kg', yield: '15-20 quintal/acre', duration: '90-110 दिन', season: 'खरीफ' }, { id: 12, name: 'Groundnut', hindiName: 'मूंगफली', category: 'तेल', icon: '🥜', price: 420, unit: 'kg', yield: '20-25 quintal/acre', duration: '120-140 दिन', season: 'खरीफ' } ] const categories = ['सभी', 'धान', 'गेहूं', 'मक्का', 'दालें', 'सब्जी', 'तेल'] const [selectedCategory, setSelectedCategory] = useState('सभी') const filteredSeeds = selectedCategory === 'सभी' ? seeds : seeds.filter(s => s.category === selectedCategory) return (

हमारे बीज उत्पाद

प्रमाणित गुणवत्ता और उच्च उपज वाले बीज। हर फसल के लिए सर्वश्रेष्ठ बीज।

{categories.map((cat) => ( ))}
{filteredSeeds.map((seed, index) => (
))}
) }