gdf

dfgdf

import React, { useState, useEffect } from ‘react’; import { ChevronRight, Target, Users, BarChart3, MessageSquare, CheckCircle2, Menu, X, Mail, Phone, ArrowRight, Zap, ShieldCheck, Globe, Search, Database, Send, Trophy, Car, Briefcase, Smartphone } from ‘lucide-react’; const App = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [isScrolled, setIsScrolled] = useState(false); useEffect(() => { // Adding Google Fonts dynamically for a premium geometric look const link = document.createElement(‘link’); link.href = ‘https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap’; link.rel = ‘stylesheet’; document.head.appendChild(link); const handleScroll = () => { setIsScrolled(window.scrollY > 20); }; window.addEventListener(‘scroll’, handleScroll); return () => { window.removeEventListener(‘scroll’, handleScroll); document.head.removeChild(link); }; }, []); const navLinks = [ { name: ‘Services’, href: ‘#services’ }, { name: ‘Our Process’, href: ‘#process’ }, { name: ‘FAQ’, href: ‘#faq’ }, { name: ‘Contact’, href: ‘#contact’ }, ]; const processSteps = [ { number: “1”, icon: , title: “Targeted Outreach”, desc: “We deploy high-deliverability email campaigns tailored to your specific niche to identify prospects with active project requirements.” }, { number: “2”, icon: , title: “Visual Qualification”, desc: “Prospects are vetted against your portfolio and samples, ensuring they are pre-sold on your quality and style before the handoff.” }, { number: “3”, icon: , title: “Direct Intent Capture”, desc: “We secure direct contact information and specific ordering requirements, moving the lead from a simple inquiry to a high-intent phone lead.” }, { number: “4”, icon: , title: “Seamless Handoff”, desc: “Validated, sales-ready prospects are delivered directly to your team with full context, ready for you to finalize the order.” } ]; const faqItems = [ { q: ‘How do you ensure the leads are actually interested in my work?’, a: ‘We identifying intent through our “Visual Qualification” step. We show prospects samples of your work during outreach. If they don\’t love the style or quality, we don\’t pass them on. You only receive leads that are already pre-sold on your specific portfolio.’ }, { q: ‘Are these exclusive leads or shared with other clients?’, a: ‘Every lead we generate is 100% exclusive to you. We never “resell” leads or recycle prospects between different clients. Once we hand a lead off, it belongs entirely to your sales pipeline.’ }, { q: ‘What information is included with each lead delivered?’, a: ‘Every lead includes the prospect’s name, verified email address, and a summary of their project requirements. Some prospects also provide a phone number and are open to a call, but not all do—and that’s completely fine. You can engage leads via email, call, or your preferred channel based on what the prospect is comfortable with.’ }, { q: ‘How quickly will I start seeing qualified leads?’, a: ‘Most campaigns go live within 5-7 days. Because we focus on active outreach rather than passive ads, you can typically expect your first high-intent opportunities within the first two weeks of launch.’ }, { q: ‘Do I need to handle the email setup myself?’, a: ‘No. We manage the entire technical infrastructure, including domain health and deliverability monitoring. You don’t need any technical knowledge; your only job is to handle the final order conversation.’ }, { q: ‘Can this work for my digital product or service?’, a: ‘Yes. Our system is designed for any digital offer with clear value. From SaaS and agencies to courses, apps, marketing services, and online platforms, the process adapts to your niche and audience.’ } ]; return (
{/* Navigation */} {/* Hero Section */}

Lead Generation Services That Fill Your Pipeline

Quality leads, qualified prospects, and measurable results. We specialise in B2B and Automotive lead generation to help grow your business.

Lead generation visual
{/* Promo Banner */}

Ready to Transform Your Sales Pipeline?

Automotive Marketing Specialist – generating quality leads with XL Marketing

Start Generating Leads
{/* Process */}

Our Proven Process

How We Generate Quality Leads

We bridge the gap between initial interest and high-intent project opportunities.

{processSteps.map((step, i) => (
{/* connector */} {i < processSteps.length - 1 && (
)}
{step.icon}
{String(i + 1).padStart(2, ‘0’)}

{step.title}

{step.desc}

))}
{/* Services */}

Expertise

Scale Your Sales Funnel

See exactly what your team receives with every qualified lead.

{/* Left: Value bullets */}
{[{ title: ‘Real prospects, not cold lists’, desc: ‘Every lead is generated through active outreach and validated interest — not scraped databases.’ },{ title: ‘Context-rich handoff’, desc: ‘You receive project details and intent, so conversations start warm instead of awkward.’ },{ title: ‘Flexible communication’, desc: ‘Some prospects prefer email, others calls. You choose how your team engages.’ }].map((item, i) => (
{i + 1}

{item.title}

{item.desc}

))}
{/* Right: Lead notification mockup */}
{/* glow */}
{/* phone frame */}
{/* header */}

New Qualified Lead

Delivered just now

{/* content */}

Name

Sarah Mitchell

Verified Email

sarah@agencybrand.co

Direct Phone (if provided)

+44 7XXX XXX XXX

Project Intent

Looking for a new landing page design for upcoming SaaS launch. Timeline: 2–3 weeks. Budget approved.

{/* Works Well For */}

Best Fit

Works Especially Well For

Our outreach and qualification system performs best when the offer has clear value, proof, and a defined audience.

{[ { title: ‘Agencies & Studios’, desc: ‘Web design, development, branding, marketing, video, creative services.’ }, { title: ‘SaaS & Software Tools’, desc: ‘B2B platforms, productivity tools, AI products, subscriptions.’ }, { title: ‘Coaching & Consulting’, desc: ‘Business coaches, mentors, growth consultants, strategists.’ }, { title: ‘Courses & Info Products’, desc: ‘Online programs, training, communities, paid knowledge products.’ }, { title: ‘High-Ticket Freelancers’, desc: ‘Specialists with strong portfolios and premium positioning.’ }, { title: ‘Digital Services’, desc: ‘SEO, paid ads, CRO, automation, analytics, funnels.’ }, { title: ‘Niche Platforms’, desc: ‘Marketplaces, directories, tools for specific industries.’ }, { title: ‘B2B Offers’, desc: ‘Anything selling into businesses with clear ICP and offer.’ }, { title: ‘New Offers with Proof’, desc: ‘Early-stage offers that already show traction or results.’ } ].map((item, i) => (

{item.title}

{item.desc}

))}

If you sell something digital with real value, there’s a strong chance this system can work for you.

{/* FAQ Section */}

FAQ

Common Questions

Everything you need to know about our lead generation and qualification process.

{faqItems.map((item, i) => (

{item.q}

+

{item.a}

))}
{/* CTA Section */}

Stop chasing,
start closing.

Schedule your free 20-minute lead strategy audit.

Email Us

growth@leadflow.co

e.preventDefault()}>
{/* Footer */}
); }; export default App;