import React, { useState, useEffect } from 'react';
import {
Search,
Menu,
X,
ChevronRight,
ChevronDown,
MessageCircle,
Globe,
Truck,
CheckCircle2,
Star,
ArrowRight,
ShieldCheck,
Zap,
PhoneCall,
Mail,
MapPin,
Building2,
PackageCheck,
Award,
Clock,
Send,
Users,
Factory
} from 'lucide-react';
const App = () => {
const [scrolled, setScrolled] = useState(false);
const [isMenuOpen, setIsMenuOpen] = useState(false);
const [showExpert, setShowExpert] = useState(false);
const [openFaq, setOpenFaq] = useState(null);
// Consolidated Lead Form State
const [leadData, setLeadData] = useState({
type: 'Domestic',
category: '',
product: '',
location: '',
countryPort: '',
name: '',
mobile: '',
email: '',
timeline: 'Immediately'
});
const companyData = {
name: "Paramount Threads Pvt. Ltd",
gst: "27AACCP3558M1ZZ",
phone1: "+91 93240 10422",
phone2: "+91 81696 53538",
email: "ptpl_80@rediffmail.com",
address: "A/122, Shanti Industrial Estate, Mulund (W), Mumbai- 400080",
waNumber: "919324010422"
};
const productMap = {
"Polyester-Spun Polyester": ["Standard Spun", "High Tenacity", "Industrial Grade"],
"Polyester Core Spun": ["Poly-Poly Core", "Poly-Cotton Core", "Heavy Duty Core"],
"Cotton RFD": ["Premium RFD Cotton", "Organic RFD", "Eco-Friendly Base"],
"Continuous Filament Thread": ["Lustrous Filament", "Textured Filament", "Embroidery Special"]
};
const domesticCities = ["Ahmedabad", "Mumbai", "Kolhapur", "Amravati", "Indore", "Surat", "Vapi", "Umargaon", "Ranchi", "Delhi", "Kolkata", "Others"];
const internationalContinents = ["Africa (Kenya/Mombasa)", "Asia", "Europe", "North America", "Middle East"];
useEffect(() => {
const handleScroll = () => setScrolled(window.scrollY > 20);
window.addEventListener('scroll', handleScroll);
const timer = setTimeout(() => setShowExpert(true), 5000);
return () => {
window.removeEventListener('scroll', handleScroll);
clearTimeout(timer);
};
}, []);
const handleWhatsAppLead = (e) => {
if(e) e.preventDefault();
const text = `*New Business Inquiry*%0A%0A*Interest:* ${leadData.type}%0A*Category:* ${leadData.category}%0A*Product:* ${leadData.product}%0A*Location:* ${leadData.location}${leadData.countryPort ? ` (${leadData.countryPort})` : ''}%0A*Timeline:* ${leadData.timeline}%0A%0A*Name:* ${leadData.name}%0A*Mobile:* ${leadData.mobile}`;
window.open(`https://wa.me/${companyData.waNumber}?text=${text}`, '_blank');
};
const scrollToId = (id) => {
const element = document.getElementById(id);
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
setIsMenuOpen(false);
}
};
return (
{/* --- TOP EXPORT FLOATER --- */}
Logistics Hub
FCL or LCL Specialist
Direct support for full containers to Mombasa and key global ports.
scrollToId('home')} className="w-full bg-[#1A1B4B] text-white py-3 rounded-xl text-[10px] font-bold uppercase tracking-widest hover:bg-blue-900 transition-all flex items-center justify-center gap-2">
Get Export Rates
{/* --- NAVIGATION --- */}
scrollToId('home')}>
P
PARAMOUNT
Threads Pvt. Ltd.
{[
{ label: 'Home', id: 'home' },
{ label: 'Products', id: 'products' },
{ label: 'About Us', id: 'aboutus' },
{ label: 'Inquiry', id: 'inquiry-bottom' },
{ label: 'Contact', id: 'contact' }
].map((item) => (
scrollToId(item.id)} className="text-[11px] font-bold tracking-widest uppercase text-slate-600 hover:text-[#1A1B4B] transition-colors relative group">
{item.label}
))}
Expert Advice
setIsMenuOpen(true)} className="lg:hidden p-2 text-slate-900">
{/* --- HERO SECTION --- */}
Premium Industrial Standards
The Gold Standard of Sewing Threads.
Engineered for endurance. Trusted by global fashion houses and heavy industrial units for over 40 years.
{/* --- UNIFIED PREMIUM LEAD FORM --- */}
Quick Requirement Tool
setLeadData({...leadData, type: 'Domestic'})}
className={`px-4 py-2 rounded-lg text-[10px] font-bold transition-all ${leadData.type === 'Domestic' ? 'bg-[#1A1B4B] text-white shadow-lg' : 'text-slate-500'}`}
>Domestic
setLeadData({...leadData, type: 'Import'})}
className={`px-4 py-2 rounded-lg text-[10px] font-bold transition-all ${leadData.type === 'Import' ? 'bg-[#1A1B4B] text-white shadow-lg' : 'text-slate-500'}`}
>International
{/* --- USP SCROLLER --- */}
{[1, 2, 3].map(i => (
Exporting to Kenya & Mombasa
GST: {companyData.gst}
Full Container & LCL Experts
40 Years Industry Mastery
))}
{/* --- PRODUCT SHOWCASE --- */}
Core Range
Quality Across Categories
{[
{
title: "Polyester-Spun",
desc: "Engineered for high-speed industrial sewing machines.",
img: "https://images.unsplash.com/photo-1520032484190-e5ef81d87978?auto=format&fit=crop&q=80&w=600"
},
{
title: "Polyester Core Spun",
desc: "Superior strength for structural garment seams.",
img: "https://images.unsplash.com/photo-1605518216938-7c31b7b14ad0?auto=format&fit=crop&q=80&w=600"
},
{
title: "Cotton RFD",
desc: "Premium Ready-for-Dyeing base for custom textile projects.",
img: "https://images.unsplash.com/photo-1528291151377-165f5107c82a?auto=format&fit=crop&q=80&w=600"
},
{
title: "Continuous Filament",
desc: "High-lustre filament for decorative and high-stress use.",
img: "https://images.unsplash.com/photo-1620799140408-edc6dcb6d633?auto=format&fit=crop&q=80&w=600"
}
].map((item, idx) => (
{item.title}
{item.desc}
scrollToId('inquiry-bottom')}
className="w-full py-3 bg-slate-50 text-[#1A1B4B] rounded-xl text-[10px] font-black uppercase tracking-widest group-hover:bg-[#1A1B4B] group-hover:text-white transition-all border border-slate-100"
>
Inquire Now
))}
{/* --- ABOUT US / DIRECTORS --- */}
The Visionaries Behind Paramount.
A legacy spanning four decades, built on the principles of integrity, employee value, and a relentless focus on global textile innovation.
Photo
Manish Shah
Founder & Managing Director
"With 40 years of profound expertise, Manish Shah built Paramount from scratch. His mission centers on Great Heights through Employee Values and giving back to society."
Photo
Harsh Shah
Director of Global Vision
"Driving the company globally, Harsh Shah inherits his father's vast experience to scale our core values across international textile markets with a modern vision."
{/* --- FAQ SECTION --- */}
Frequently Asked Questions
Quick Answers for Industrial Partners
{[
{ q: "What is the lead time for export to Mombasa?", a: "Standard sea-freight shipments take 15-20 days. Our export team manages all documentation for seamless Kenya port clearance." },
{ q: "Do you offer sample testing cones?", a: "Yes, we provide 1000m or 5000m sample cones for industrial machine testing upon initial verification of business inquiry." },
{ q: "What is your MOQ for domestic supply?", a: "For major cities like Surat, Ahmedabad, and Mumbai, we maintain high stock levels. Minimum orders typically start from 1 standard carton per variant." },
{ q: "Is GST billing provided for all purchases?", a: "Absolutely. As a registered Pvt Ltd firm (27AACCP3558M1ZZ), all invoices are fully GST-compliant for input credit." }
].map((faq, i) => (
setOpenFaq(openFaq === i ? null : i)}
className="w-full p-6 flex justify-between items-center text-left"
>
{faq.q}
))}
{/* --- BOTTOM LEAD FORM --- */}
Request a Bulk Quote.
Connect with our domestic or export specialists for tailored pricing on bulk orders.
{[
'Immediate WhatsApp Support',
'Customized Color Dyeing Support',
'FCL / LCL Container Expertise',
'Official GST Billing'
].map(t => (
{t}
))}
{/* --- FOOTER --- */}
{/* --- POPUPS & FLOATERS --- */}
{/* Expert Assistant Popup (RELOCATED TO LEFT) */}
{showExpert && (
Aditi Sharma
Senior Consultant
setShowExpert(false)} className="hover:rotate-90 transition-all opacity-60">
"Hi! I can help you with domestic supply or international export logistics. What's on your mind?"
{setLeadData({...leadData, type: 'Domestic'}); scrollToId('home'); setShowExpert(false);}} className="py-2.5 bg-blue-50 text-blue-700 rounded-lg text-[10px] font-black uppercase transition-all">Domestic
{setLeadData({...leadData, type: 'Import'}); scrollToId('home'); setShowExpert(false);}} className="py-2.5 bg-[#1A1B4B] text-white rounded-lg text-[10px] font-black uppercase transition-all">Export
)}
{/* WhatsApp Floater */}
Chat with Us
{/* Custom Global Styles */}
);
};
export default App;