import React, { useState, useEffect } from 'react'; import { ArrowRight, CheckCircle, Database, Zap, Shield, Users, Mail, Phone, Star, TrendingUp, Download, Clock } from 'lucide-react'; const UpLeadLanding = () => { const [email, setEmail] = useState(''); const [isMenuOpen, setIsMenuOpen] = useState(false); const [scrolled, setScrolled] = useState(false); useEffect(() => { const handleScroll = () => setScrolled(window.scrollY > 50); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const handleEmailSubmit = (e) => { e.preventDefault(); alert(`Thanks! We'll send the free guide to: ${email}`); setEmail(''); }; return (
{/* Header */}
{/* Hero Section */}
🚀 Trusted by 500+ Marketing Agencies

Stop Wasting Hours on Lead Research

Get 2,000+ verified B2B contacts in minutes. Pre-built databases for marketing agencies ready to download instantly.

Get Agency Fuel Pack - $67 See How It Works
Verified Email Addresses
Instant Download
No Subscription Required
{/* Lead Magnet Section */}

Free Guide: 10 Cold Email Templates

Get our proven email templates that convert 23% better. Used by top agencies to close deals faster.

setEmail(e.target.value)} className="flex-1 px-6 py-4 bg-gray-900 border border-gray-700 rounded-lg focus:outline-none focus:border-cyan-400 transition" />

Join 2,500+ agency owners. No spam, unsubscribe anytime.

{/* Features Section */}

Everything You Need to Scale Your Outreach

Pre-vetted, verified leads with all the contact information you need to start converting immediately.

{[ { icon: Database, title: "2,000+ Verified Contacts", description: "Every email verified and validated. Business name, owner name, email, phone, website, and location included." }, { icon: Zap, title: "Instant Download", description: "Get your CSV file immediately after purchase. No waiting, no manual verification needed." }, { icon: Shield, title: "GDPR Compliant Data", description: "All data sourced from public directories and business listings. 100% compliant and safe to use." }, { icon: Users, title: "Niche-Specific Targeting", description: "Restaurants, retail stores, local services - all segmented by industry for laser-focused outreach." }, { icon: Mail, title: "Email Templates Included", description: "10 proven cold email templates that our clients use to book 15+ calls per week." }, { icon: TrendingUp, title: "Conversion Playbook", description: "10-minute video showing exactly how to convert these leads into $2K/month clients." } ].map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Social Proof */}

Trusted by Growing Agencies

{[ { name: "Sarah Mitchell", role: "Founder, GrowthLab Marketing", text: "Downloaded the database on Monday, booked 3 discovery calls by Friday. The email templates alone are worth 10x the price.", rating: 5 }, { name: "Carlos Rodríguez", role: "CEO, Digital Boost Agency", text: "Finally, a lead database that actually works. Saved me 20+ hours of LinkedIn scraping. Closed my first client in 2 weeks.", rating: 5 }, { name: "Jennifer Park", role: "Lead Gen Specialist", text: "The quality is insane. 95%+ of emails were valid. Already recommended to 3 colleagues. Best $67 I've spent this year.", rating: 5 } ].map((testimonial, index) => (
{[...Array(testimonial.rating)].map((_, i) => ( ))}

"{testimonial.text}"

{testimonial.name}

{testimonial.role}

))}
{/* Pricing Section */}

Simple, Transparent Pricing

One-time payment. Lifetime access. No subscriptions.

{[ { name: "Starter Pack", price: "$27", description: "Perfect for testing the waters", features: [ "500 verified leads", "1 industry niche", "Basic email templates", "CSV download" ], cta: "Get Started", popular: false }, { name: "Agency Fuel Pack", price: "$67", description: "Most popular for growing agencies", features: [ "2,000 verified leads", "3 industry niches", "10 email templates", "Video conversion playbook", "50 free API verifications", "Priority support" ], cta: "Get Agency Pack", popular: true }, { name: "Ultimate Bundle", price: "$147", description: "For serious scale", features: [ "5,000+ verified leads", "All industry niches", "Complete email library", "Full video course", "200 free API verifications", "White-glove onboarding", "Lifetime updates" ], cta: "Get Ultimate", popular: false } ].map((plan, index) => (
{plan.popular && (
MOST POPULAR
)}

{plan.name}

{plan.description}

{plan.price}

one-time payment

    {plan.features.map((feature, i) => (
  • {feature}
  • ))}
))}

Limited Time: First 100 customers get lifetime access to future database updates

Secure Payment via Stripe
Instant Delivery
{/* FAQ Section */}

Frequently Asked Questions

{[ { q: "How are the emails verified?", a: "We use a combination of SMTP verification, domain validation, and manual spot-checks. Our verification rate is 95%+, meaning less than 5% bounce rate." }, { q: "Can I use these leads for cold email campaigns?", a: "Yes! All data is sourced from public business directories and is compliant with GDPR and CAN-SPAM. However, always follow email marketing best practices and local regulations." }, { q: "What format do I receive the data in?", a: "You'll get a clean CSV file with columns: Business Name, Owner Name, Email, Phone, Website, Location, Industry. Easy to import into any CRM or email tool." }, { q: "Do you offer refunds?", a: "Due to the digital nature of the product, we don't offer refunds. However, we stand behind our quality - if you have issues with data accuracy, contact us and we'll make it right." }, { q: "How often is the database updated?", a: "We refresh our databases quarterly. Agency Fuel Pack and Ultimate Bundle customers get free updates for life." }, { q: "Can I resell this data?", a: "No, the data is licensed for your business use only. Reselling or redistributing the database is prohibited." } ].map((faq, index) => (
{faq.q} â–¼

{faq.a}

))}
{/* Final CTA */}

Ready to Fill Your Pipeline with Qualified Leads?

Join 500+ agencies who've already transformed their outreach. Download your database in the next 60 seconds.

Get Your Leads Now - Starting at $27
{/* Footer */}
); }; export default UpLeadLanding;