import { useState } from 'react'; import { FaWhatsapp, FaPhoneAlt, FaInstagram, FaYoutube, FaFacebookF, } from 'react-icons/fa'; export default function SabkaKabadiWalaWebsite() { const [selectedService, setSelectedService] = useState(''); const [language, setLanguage] = useState('en'); const translations = { en: { home: 'Home', services: 'Services', about: 'About', rates: 'Check Rate', contact: 'Contact', heroTitle: 'Scrap Pickup Services in Nagpur', heroSubtitle: 'Turn your old scrap into instant cash — book your pickup today! 💰♻️', bookPickup: '{t.bookPickup}', whatsapp: '{t.whatsapp}', quickBooking: 'Quick Booking Form', yourName: 'Your Name', phone: 'Phone Number', location: 'Location', address: 'Address', selectScrap: 'Select Scrap Type', submit: 'Submit → WhatsApp', ourServices: '{t.ourServices}', whyChoose: '{t.whyChoose}', scrapWeBuy: '{t.scrapWeBuy}', aboutTitle: '{t.aboutTitle}', howWorks: '{t.howWorks}', reviews: '{t.reviews}', faq: '{t.faq}', contactUs: '{t.contactUs}' }, hi: { home: 'होम', services: 'सेवाएं', about: 'हमारे बारे में', rates: 'रेट देखें', contact: 'संपर्क करें', heroTitle: 'नागपुर में स्क्रैप पिकअप सेवा', heroSubtitle: 'अपने पुराने कबाड़ को तुरंत पैसे में बदलें — आज ही पिकअप बुक करें! 💰♻️', bookPickup: 'पिकअप बुक करें', whatsapp: 'व्हाट्सएप', quickBooking: 'त्वरित बुकिंग फॉर्म', yourName: 'आपका नाम', phone: 'फोन नंबर', location: 'लोकेशन', address: 'पता', selectScrap: 'स्क्रैप का प्रकार चुनें', submit: 'सबमिट → व्हाट्सएप', ourServices: 'हमारी सेवाएं', whyChoose: 'हमें क्यों चुनें', scrapWeBuy: 'हम कौन सा स्क्रैप खरीदते हैं', aboutTitle: 'सबका कबाड़ी वाला के बारे में', howWorks: 'यह कैसे काम करता है', reviews: 'ग्राहक समीक्षा', faq: 'अक्सर पूछे जाने वाले सवाल', contactUs: 'संपर्क करें' } }; const t = translations[language]; const handleLanguageSwitch = () => { setLanguage((prev) => (prev === 'en' ? 'hi' : 'en')); }; const scrollToSection = (id) => { const section = document.querySelector(id); if (section) { section.scrollIntoView({ behavior: 'smooth' }); } }; const handleServiceClick = (serviceName) => { setSelectedService(serviceName); scrollToSection('#contact'); }; const services = [ { icon: '🏠', title: 'Household Scrap' }, { icon: '🏢', title: 'Office Scrap' }, { icon: '🏭', title: 'Factory Scrap' }, { icon: '📦', title: 'Bulk Scrap' }, ]; const features = [ 'Free Pickup', 'Best Rate', 'Instant Payment', 'Same Day Service', ]; const testimonials = [ { name: 'Rahul Sharma', review: 'Very fast pickup service and best scrap rates in Nagpur. Highly recommended!', }, { name: 'Pooja Verma', review: 'Easy booking process and instant payment. Great experience.', }, { name: 'Amit Patel', review: 'Professional team with same day scrap pickup service.', }, ]; const handleWhatsAppSubmit = (e) => { e.preventDefault(); const form = e.target; const name = form.name.value; const phone = form.phone.value; const address = form.address.value; const scrap = form.scrap.value; const location = form.location.value; const message = `Hello Sabka Kabadi Wala! Name: ${name} Phone: ${phone} Location: ${location} Address: ${address} Scrap Type: ${scrap}`; const whatsappUrl = `https://wa.me/919270710349?text=${encodeURIComponent(message)}`; window.open(whatsappUrl, '_blank', 'noopener,noreferrer'); }; return (
{/* Navbar */}
{ e.currentTarget.src = 'https://via.placeholder.com/150?text=Logo'; }} alt="Sabka Kabadi Wala Logo" className="w-14 h-14 md:w-16 md:h-16 rounded-full object-cover border-2 border-yellow-400 shadow-xl transition duration-500 hover:scale-110 hover:rotate-6 hover:-translate-y-1 hover:shadow-2xl" />

Sabka Kabadi Wala

Scrap Pickup Services in Nagpur

{/* Hero Section */}

{t.heroTitle}

{t.heroSubtitle}

WhatsApp

{t.quickBooking}