export default function AutoInsuranceLandingPage() { const phoneNumber = "(888) 555-0199"; const phoneHref = "tel:+18885550199"; const benefits = [ { title: "Fast Quote Options", description: "Call now to compare multiple auto insurance quote options in minutes without filling out long forms.", icon: "⚡", img: "https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=800", }, { title: "Licensed Agents", description: "Speak directly with licensed insurance agents who can help explain coverage options and pricing.", icon: "🛡️", img: "https://images.unsplash.com/photo-1556740749-887f6717d7e4?q=80&w=800", }, { title: "Save Time & Money", description: "Find affordable coverage choices, discounts, and policy options tailored to your driving needs.", icon: "💵", img: "https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=800", }, ]; const reasons = [ "Quick call-based quote experience", "Helpful support from licensed agents", "Coverage options for many driver profiles", "Simple mobile-friendly experience", "Fast answers to common policy questions", "No lengthy online application required to get started", ]; const trustSignals = [ { value: "95%", label: "Customer satisfaction focus" }, { value: "Licensed", label: "Insurance agents available" }, { value: "Minutes", label: "Fast quote turnaround" }, ]; const faqs = [ { q: "How fast can I get an auto insurance quote?", a: "In many cases, you can speak with an agent and review quote options in just a few minutes depending on your driver profile.", }, { q: "Do I need to fill out a long form first?", a: "No. This page is built for callers who prefer to speak with an agent directly and get help over the phone.", }, { q: "Can I ask about discounts?", a: "Yes. Agents can often discuss safe driver discounts, bundling, multi‑vehicle discounts and more.", }, { q: "What info should I have ready when I call?", a: "Your vehicle details, ZIP code, driver history and current coverage if you have it.", }, ]; return (
{/* HEADER */}

Car4insurance

Call Now {phoneNumber}
{/* HERO */}

Compare Auto Insurance Quotes in Minutes

Speak with a licensed insurance agent and review coverage options instantly over the phone.

📞 Call Now {phoneNumber}

Fast quotes • Licensed agents • No long forms

{/* BENEFITS */}

Benefits of Calling

Speak with an agent and compare insurance options quickly.

{benefits.map((b) => (
{b.icon}

{b.title}

{b.description}

))}
{/* WHY CHOOSE US */}

Why Drivers Choose Us

    {reasons.map((r) => (
  • {r}
  • ))}
Call Now {phoneNumber}
{/* PROCESS */}

Simple 3‑Step Process

Get your auto insurance quote in three quick steps.

{[ { title: "Call", img: "https://images.unsplash.com/photo-1580910051074-3eb694886505?q=80&w=800", text: "Tap the phone number and instantly connect with an insurance quote specialist.", }, { title: "Speak with Agent", img: "https://images.unsplash.com/photo-1551434678-e076c223a692?q=80&w=800", text: "Answer a few simple questions about your vehicle and coverage needs.", }, { title: "Get Quote", img: "https://images.unsplash.com/photo-1554224154-22dec7ec8818?q=80&w=800", text: "Review available coverage options and potential discounts in minutes.", }, ].map((p, i) => (
STEP {i + 1}

{p.title}

{p.text}

))}
{/* TRUST */}
{trustSignals.map((t) => (
{t.value}

{t.label}

))}
{/* FAQ */}

FAQ

{faqs.map((f) => (
{f.q}

{f.a}

))}
{/* FINAL CTA */}

Ready to Compare Auto Insurance Quotes?

Speak with a licensed agent now and review available coverage options.

📞 Call Now {phoneNumber}
{/* FOOTER */}
); }