import React, { useState } from 'react'; import { Phone, MapPin, Building2, Send, CheckCircle2, ShoppingBag, Menu, X } from 'lucide-react'; export default function App() { const [isMenuOpen, setIsMenuOpen] = useState(false); const [formData, setFormData] = useState({ name: '', phone: '', message: '' }); const [submitStatus, setSubmitStatus] = useState('idle'); // idle, sending, success const products = [ { name: "Kurti Pant Dupatta Sets", image: "https://images.unsplash.com/photo-1583391733958-650fac5eb369?auto=format&fit=crop&w=600&q=80" }, { name: "Coord Sets", image: "https://images.unsplash.com/photo-1604176354204-9268737828e4?auto=format&fit=crop&w=600&q=80" }, { name: "Single Kurtis", image: "https://images.unsplash.com/photo-1603415526960-f7e0328c63b1?auto=format&fit=crop&w=600&q=80" }, { name: "Kurti Pants", image: "https://images.unsplash.com/photo-1595777457583-95e059d581b8?auto=format&fit=crop&w=600&q=80" }, { name: "Nighties", image: "https://images.unsplash.com/photo-1616084606184-7a2e8c159844?auto=format&fit=crop&w=600&q=80" }, { name: "Sarees", image: "https://images.unsplash.com/photo-1610189014605-e1106ab0ce4e?auto=format&fit=crop&w=600&q=80" } ]; const team = [ { name: "Sripal Jain", image: "https://ui-avatars.com/api/?name=Sripal+Jain&background=0D8ABC&color=fff&size=256" }, { name: "Rashi Jain", image: "https://ui-avatars.com/api/?name=Rashi+Jain&background=F59E0B&color=fff&size=256" }, { name: "Jainam Shah", image: "https://ui-avatars.com/api/?name=Jainam+Shah&background=10B981&color=fff&size=256" }, { name: "Sarthak Shah", image: "https://ui-avatars.com/api/?name=Sarthak+Shah&background=8B5CF6&color=fff&size=256" } ]; const handleInputChange = (e) => { const { name, value } = e.target; setFormData(prev => ({ ...prev, [name]: value })); }; const handleSubmit = (e) => { e.preventDefault(); setSubmitStatus('sending'); // This simulates the connection to your PHP backend. // In production on Hostgator, you would uncomment the fetch block below. setTimeout(() => { setSubmitStatus('success'); setFormData({ name: '', phone: '', message: '' }); setTimeout(() => setSubmitStatus('idle'), 4000); }, 1500); /* // ACTUAL PHP BACKEND CALL (Uncomment for Hostgator deployment): fetch('https://yourdomain.com/contact.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(formData) }).then(res => res.json()).then(data => { setSubmitStatus('success'); setFormData({ name: '', phone: '', message: '' }); }).catch(err => { console.error("Error submitting form", err); }); */ }; const scrollToSection = (id) => { const element = document.getElementById(id); if (element) { element.scrollIntoView({ behavior: 'smooth' }); } setIsMenuOpen(false); }; return (
{/* Navigation */} {/* Hero Section */}
Premium Ladies Wear Wholesalers

Elevate Your Retail Business with Premium Fashion

Proudly operated by Hithvi Creations and JP Enterprise. We supply high-quality ladies' ethnic and casual wear in bulk quantities at unbeatable wholesale prices.

{/* Products Section */}

Our Wholesale Range

Browse our premium categories available for bulk purchase. We ensure quality fabrics and the latest trends.

{products.map((product, index) => (
{product.name}

{product.name}

))}
{/* Team Section */}

Meet Our Team

The dedicated faces behind Hithvi Creations & JP Enterprise.

{team.map((member, index) => (
{member.name}

{member.name}

))}
{/* Contact Section */}
{/* Contact Info */}

Let's Do Business

Interested in stocking our products? Contact us for our complete wholesale catalog, minimum order quantities, and pricing details.

Call Us

9000668609

Our Address

J P ENTERPRISE

B. 2014 CITY CENTRE 2
AHMEDABAD

{/* Contact Form */}

Request Wholesale Details

{submitStatus === 'success' ? (

Message Sent Successfully!

Our team will contact you shortly regarding your bulk order inquiry.

) : (
)}
{/* Footer */}
); }