439 lines
20 KiB
TypeScript
439 lines
20 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
|
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
|
|
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
|
import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
|
|
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
|
import Link from "next/link";
|
|
import { Briefcase, Star, Compass, HelpCircle, Phone, Quote, Award, Handshake, Search } from "lucide-react";
|
|
|
|
export default function HomePage() {
|
|
const navItems = [
|
|
{ name: "Home", id: "home" },
|
|
{ name: "Car Accident Lawyer", id: "car-accidents" },
|
|
{ name: "Motorcycle Accident Lawyer", id: "motorcycle-accidents" },
|
|
{ name: "About Corey", id: "about" },
|
|
{ name: "Reviews", id: "reviews" },
|
|
{ name: "Contact", id: "contact" },
|
|
];
|
|
|
|
const footerColumns = [
|
|
{
|
|
title: "Quick Links",
|
|
items: [
|
|
{ label: "Home", href: "/" },
|
|
{ label: "Car Accident Lawyer", href: "/car-accident-lawyer" },
|
|
{ label: "Motorcycle Accident Lawyer", href: "/motorcycle-accident-lawyer" },
|
|
{ label: "About Corey", href: "/about" },
|
|
{ label: "Reviews", href: "/reviews" },
|
|
],
|
|
},
|
|
{
|
|
title: "Contact Info",
|
|
items: [
|
|
{ label: "Call: (877) 749-1112", href: "tel:(877) 749-1112" },
|
|
{ label: "Address: 931 State Hwy 121 Suite 4100A, Allen, TX 75013", href: "#" },
|
|
{ label: "Free Consultation", href: "/contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Practice Areas",
|
|
items: [
|
|
{ label: "Car Accidents", href: "/car-accident-lawyer" },
|
|
{ label: "Motorcycle Accidents", href: "/motorcycle-accident-lawyer" },
|
|
{ label: "Personal Injury", href: "/car-accident-lawyer" },
|
|
{ label: "Insurance Disputes", href: "/contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal",
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Disclaimer", href: "#" },
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="smallMedium"
|
|
sizing="largeSmallSizeLargeTitles"
|
|
background="none"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="medium"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={navItems}
|
|
brandName="Car & Motorcycle Accident Lawyer Pros"
|
|
bottomLeftText="Allen, TX 75013"
|
|
bottomRightText="(877) 749-1112"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroLogoBillboard
|
|
logoText="Car & Motorcycle Accident Lawyer Pros"
|
|
description="Expert personal injury attorney serving Allen, McKinney, Plano, Frisco, and North Dallas. Get the maximum compensation you deserve after an accident. Free consultation available now."
|
|
buttons={[
|
|
{
|
|
text: "Call Now (877) 749-1112",
|
|
href: "tel:(877) 749-1112",
|
|
},
|
|
{
|
|
text: "Free Case Evaluation",
|
|
href: "#contact-form",
|
|
},
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
background={{ variant: "radial-gradient" }}
|
|
imageSrc="http://img.b2bpic.net/free-photo/hiring-new-manager_1098-12663.jpg"
|
|
imageAlt="Professional law firm office consultation"
|
|
mediaAnimation="opacity"
|
|
frameStyle="card"
|
|
ariaLabel="Hero section - Car accident lawyer"
|
|
/>
|
|
</div>
|
|
|
|
<div id="trust-credentials" data-section="trust-credentials">
|
|
<TextSplitAbout
|
|
title="Why Trust Car & Motorcycle Accident Lawyer Pros"
|
|
description={[
|
|
"With over a decade of experience fighting for accident victims in North Dallas, Attorney Corey Higgins has built a reputation for aggressive representation and exceptional results.",
|
|
"5.0 Star Rating - 10 Client Reviews: Our clients consistently praise our dedication, clear communication, and commitment to maximizing their compensation.",
|
|
"Free consultations mean no financial burden when you need help most. No upfront fees - we only get paid when you win your case.",
|
|
"Local expertise in Allen, McKinney, Plano, and Frisco combined with a relentless approach to holding negligent parties accountable.",
|
|
]}
|
|
buttons={[
|
|
{
|
|
text: "Schedule Your Free Consultation",
|
|
href: "#contact-form",
|
|
},
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
showBorder={true}
|
|
useInvertedBackground={false}
|
|
ariaLabel="Trust and credentials section"
|
|
/>
|
|
</div>
|
|
|
|
<div id="practice-areas" data-section="practice-areas">
|
|
<FeatureCardTwentyFour
|
|
title="Our Practice Areas"
|
|
description="We specialize in personal injury cases with a proven track record of securing maximum compensation for our clients."
|
|
features={[
|
|
{
|
|
id: "car-accidents",
|
|
title: "Car Accident Claims",
|
|
author: "Multi-vehicle and single-vehicle accidents",
|
|
description:
|
|
"Whether you were hit by another driver or struck while parked, we handle all types of car accidents. We fight insurance companies to recover medical expenses, lost wages, and pain and suffering damages.",
|
|
tags: ["Negligent drivers", "Insurance disputes", "Full compensation"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-wearing-protective-equipment_23-2149714276.jpg",
|
|
imageAlt: "Car accident damage assessment",
|
|
},
|
|
{
|
|
id: "motorcycle-accidents",
|
|
title: "Motorcycle Accident Cases",
|
|
author: "Specialized representation for riders",
|
|
description:
|
|
"Motorcycle accidents often result in severe injuries due to lack of vehicle protection. Insurance companies frequently discriminate against riders. We level the playing field and fight aggressively for riders' rights.",
|
|
tags: ["Severe injuries", "Anti-rider bias", "Maximum recovery"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-details-cross-motorcycle-parked-ground_93675-133942.jpg",
|
|
imageAlt: "Motorcycle accident injury representation",
|
|
},
|
|
{
|
|
id: "personal-injury",
|
|
title: "Personal Injury Claims",
|
|
author: "Comprehensive injury compensation",
|
|
description:
|
|
"Beyond accidents, we handle slip-and-fall injuries, workplace accidents, dog bites, and other incidents caused by negligence. Every injury deserves fair compensation.",
|
|
tags: ["All injury types", "Negligence claims", "Fair settlements"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/executives-smiling-workplace_1098-693.jpg",
|
|
imageAlt: "Personal injury consultation",
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
tag="Practice Areas"
|
|
tagIcon={Briefcase}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
ariaLabel="Practice areas section"
|
|
/>
|
|
</div>
|
|
|
|
<div id="why-choose-us" data-section="why-choose-us">
|
|
<FeatureCardTwentyFour
|
|
title="Why Choose Our Firm"
|
|
description="We deliver results through strategic, aggressive representation focused entirely on maximizing your recovery."
|
|
features={[
|
|
{
|
|
id: "personal-attention",
|
|
title: "Personal Attention",
|
|
author: "Your case gets one-on-one focus",
|
|
description:
|
|
"You won't be just a case number. Attorney Corey Higgins personally handles your case, ensuring you receive the attention and strategy your situation deserves.",
|
|
tags: ["Direct attorney contact", "Personalized strategy", "Your recovery focus"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/depository-secretary-discovering-management-files-working-overhours-accountancy-report-storage-room-businesswoman-reading-bureaucracy-record-analyzing-administrative-documents_482257-62931.jpg",
|
|
imageAlt: "Case investigation and strategy",
|
|
},
|
|
{
|
|
id: "aggressive-representation",
|
|
title: "Aggressive Representation",
|
|
author: "We fight hard for maximum compensation",
|
|
description:
|
|
"We don't settle for lowball offers. We investigate thoroughly, build strong cases, and are prepared to take your case to trial if necessary to get the compensation you deserve.",
|
|
tags: ["Trial-ready", "Strong negotiations", "Maximum awards"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/co-workers-planning-strategy_1098-588.jpg",
|
|
imageAlt: "Insurance negotiation process",
|
|
},
|
|
{
|
|
id: "no-win-no-fee",
|
|
title: "No Win, No Fee Guarantee",
|
|
author: "You only pay if we win",
|
|
description:
|
|
"We work on contingency, meaning you don't pay any attorney fees unless we successfully recover compensation for you. This aligns our success with yours.",
|
|
tags: ["Risk-free representation", "Contingency basis", "Client-focused"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-discussing-business_23-2148911776.jpg",
|
|
imageAlt: "Successful compensation award",
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
tag="Our Advantage"
|
|
tagIcon={Star}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
ariaLabel="Why choose us section"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardOne
|
|
title="What Our Clients Say"
|
|
description="Real testimonials from real clients who received fair compensation after working with us."
|
|
testimonials={[
|
|
{
|
|
id: "1",
|
|
name: "Sarah Johnson",
|
|
role: "Accident Victim",
|
|
company: "Allen, TX",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2548.jpg",
|
|
},
|
|
{
|
|
id: "2",
|
|
name: "Michael Chen",
|
|
role: "Motorcycle Accident Survivor",
|
|
company: "McKinney, TX",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-mug_23-2149271064.jpg",
|
|
},
|
|
{
|
|
id: "3",
|
|
name: "David Rodriguez",
|
|
role: "Auto Accident Client",
|
|
company: "Plano, TX",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-home-using-mobile_23-2148306608.jpg",
|
|
},
|
|
{
|
|
id: "4",
|
|
name: "Emily Williams",
|
|
role: "Personal Injury Claimant",
|
|
company: "Frisco, TX",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-woman-outdoors_624325-541.jpg",
|
|
},
|
|
{
|
|
id: "5",
|
|
name: "James Martinez",
|
|
role: "Injury Case Winner",
|
|
company: "North Dallas",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2548.jpg",
|
|
},
|
|
{
|
|
id: "6",
|
|
name: "Lisa Thompson",
|
|
role: "Settlement Success",
|
|
company: "Allen, TX",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-mug_23-2149271064.jpg",
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
gridVariant="three-columns-all-equal-width"
|
|
tag="Client Testimonials"
|
|
tagIcon={Quote}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
ariaLabel="Client testimonials section"
|
|
/>
|
|
</div>
|
|
|
|
<div id="process" data-section="process">
|
|
<MetricCardOne
|
|
title="Our Process: How We Help After Your Accident"
|
|
description="We streamline the legal process so you can focus on recovery while we fight for your compensation."
|
|
metrics={[
|
|
{
|
|
id: "step-1",
|
|
value: "1",
|
|
title: "Free Consultation",
|
|
description: "We listen to your story, answer your questions, and explain your legal options with no obligation.",
|
|
icon: Phone,
|
|
},
|
|
{
|
|
id: "step-2",
|
|
value: "2",
|
|
title: "Case Investigation",
|
|
description: "We thoroughly investigate the accident, gather evidence, and build a strong case foundation.",
|
|
icon: Search,
|
|
},
|
|
{
|
|
id: "step-3",
|
|
value: "3",
|
|
title: "Negotiation",
|
|
description: "We negotiate aggressively with insurance companies to recover the maximum compensation.",
|
|
icon: Handshake,
|
|
},
|
|
{
|
|
id: "step-4",
|
|
value: "4",
|
|
title: "Maximum Recovery",
|
|
description: "Whether through settlement or trial, we ensure you receive fair compensation for all damages.",
|
|
icon: Award,
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
gridVariant="uniform-all-items-equal"
|
|
tag="How It Works"
|
|
tagIcon={Compass}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
ariaLabel="Our legal process steps"
|
|
/>
|
|
</div>
|
|
|
|
<div id="service-areas" data-section="service-areas">
|
|
<TextSplitAbout
|
|
title="Serving Your Local Community"
|
|
description={[
|
|
"Based in Allen, TX, we proudly serve accident victims throughout North Dallas and surrounding areas.",
|
|
"Primary Service Areas: Allen, McKinney, Plano, Frisco, and greater North Dallas region.",
|
|
"Local knowledge combined with statewide personal injury expertise means we understand Texas accident law and the insurance practices specific to our region.",
|
|
"Whether your accident happened on local roads or highways, we're here to help you navigate the legal process and recover the compensation you deserve.",
|
|
]}
|
|
buttons={[
|
|
{
|
|
text: "Get Your Free Case Review Now",
|
|
href: "tel:(877) 749-1112",
|
|
},
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
showBorder={false}
|
|
useInvertedBackground={false}
|
|
ariaLabel="Service areas section"
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqBase
|
|
title="Common Questions About Accident Claims"
|
|
description="Get answers to the most frequently asked questions about personal injury claims and how we can help."
|
|
faqs={[
|
|
{
|
|
id: "faq-1",
|
|
title: "What should I do immediately after an accident?",
|
|
content:
|
|
"First, ensure your safety and call 911 if anyone is injured. Get emergency medical attention, document the scene with photos, exchange information with other parties, and file a police report. Then call us for a free consultation before speaking with insurance companies.",
|
|
},
|
|
{
|
|
id: "faq-2",
|
|
title: "How much is my case worth?",
|
|
content:
|
|
"Case value depends on medical expenses, lost wages, pain and suffering, and liability factors. We evaluate medical records, treatment costs, lost income, and accident circumstances to estimate your claim's value. Every case is unique, which is why we provide personalized assessments.",
|
|
},
|
|
{
|
|
id: "faq-3",
|
|
title: "Do I have to pay upfront?",
|
|
content:
|
|
"No. We work on a contingency fee basis, meaning you pay nothing unless we recover compensation for you. Our fees come from the settlement or judgment, never from your pocket upfront.",
|
|
},
|
|
{
|
|
id: "faq-4",
|
|
title: "How long does a personal injury case take?",
|
|
content:
|
|
"Timeline varies based on case complexity and whether settlement is reached quickly or trial becomes necessary. Many cases settle within 3-6 months, while complex cases may take longer. We keep you informed throughout the process.",
|
|
},
|
|
{
|
|
id: "faq-5",
|
|
title: "Why do I need a lawyer?",
|
|
content:
|
|
"Insurance companies have teams of adjusters trained to minimize payouts. An experienced attorney levels the playing field, ensures proper documentation, negotiates aggressively, and maximizes your recovery.",
|
|
},
|
|
{
|
|
id: "faq-6",
|
|
title: "Will my case go to trial?",
|
|
content:
|
|
"Most cases settle before trial, but we prepare every case as if it will go to court. If insurance offers insufficient compensation, we're ready to fight for you in trial to get the result you deserve.",
|
|
},
|
|
]}
|
|
faqsAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
tag="FAQ"
|
|
tagIcon={HelpCircle}
|
|
tagAnimation="slide-up"
|
|
animationType="smooth"
|
|
showCard={true}
|
|
ariaLabel="Frequently asked questions"
|
|
/>
|
|
</div>
|
|
|
|
<div id="final-cta" data-section="final-cta">
|
|
<ContactSplit
|
|
tag="Get Started"
|
|
title="Speak With an Accident Lawyer Today"
|
|
description="Don't wait to get legal help. Call now for a free consultation about your accident case. We're ready to fight for your rights."
|
|
tagIcon={Phone}
|
|
tagAnimation="slide-up"
|
|
background={{ variant: "radial-gradient" }}
|
|
useInvertedBackground={false}
|
|
imageSrc="http://img.b2bpic.net/free-photo/handsome-young-man-using-his-mobile-phone-office_1301-3936.jpg"
|
|
imageAlt="Legal consultation ready"
|
|
mediaAnimation="opacity"
|
|
mediaPosition="right"
|
|
inputPlaceholder="Enter your email"
|
|
buttonText="Call (877) 749-1112"
|
|
termsText="By clicking the button, you agree to our Terms and consent to contact about your case."
|
|
ariaLabel="Final CTA contact section"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
columns={footerColumns}
|
|
copyrightText="© 2025 Car & Motorcycle Accident Lawyer Pros. All rights reserved. Attorney Corey Higgins provides personal injury representation in Allen, McKinney, Plano, Frisco, and North Dallas."
|
|
ariaLabel="Footer navigation"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |