Merge version_1 into main #4
@@ -1,22 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
|
||||
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
||||
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
|
||||
export default function LandingPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
];
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
@@ -27,37 +31,24 @@ export default function LandingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Chavez Brothers"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Insurance", id: "insurance" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Get Inspection", href: "#contact" }}
|
||||
navItems={navItems}
|
||||
button={{ text: "Get Quote", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
title="Roofing Done Right. Protected for Life."
|
||||
description="Dallas’ most trusted roofing & insurance claim experts. From storm damage to full replacements — we handle everything."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/blending-futuristic-building-seamlessly-into-desert-landscape_23-2151248316.jpg"
|
||||
imageAlt="luxury roof installation dark sky"
|
||||
showBlur={true}
|
||||
testimonials={[
|
||||
{ name: "Sarah J.", handle: "Homeowner", testimonial: "After calling multiple roofers with no response, they called me back immediately and fixed the issue fast.", rating: 5 },
|
||||
{ name: "Mark D.", handle: "Homeowner", testimonial: "They handled my insurance claim after it was denied twice. I didn't have to fight it alone.", rating: 5 },
|
||||
{ name: "Emily R.", handle: "Homeowner", testimonial: "Best experience I've ever had hiring anyone for my home.", rating: 5 }
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Get Free Inspection", href: "#contact" },
|
||||
{ text: "Call Now", href: "tel:5555555555" }
|
||||
{ name: "Sarah J.", handle: "Dallas, TX", testimonial: "After calling multiple roofers with no response, they called me back immediately and fixed the issue fast.", rating: 5 },
|
||||
{ name: "Mark D.", handle: "Dallas, TX", testimonial: "They handled my insurance claim after it was denied twice. I didn't have to fight it alone.", rating: 5 },
|
||||
{ name: "Emily R.", handle: "Plano, TX", testimonial: "Best experience I've ever had hiring anyone for my home.", rating: 5 }
|
||||
]}
|
||||
buttons={[{ text: "Get Free Inspection", href: "#contact" }, { text: "Call Now", href: "tel:5555555555" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardNine
|
||||
title="Comprehensive Roofing Services"
|
||||
@@ -73,19 +64,21 @@ export default function LandingPage() {
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="insurance" data-section="insurance">
|
||||
<MetricSplitMediaAbout
|
||||
title="Denied Claim? We Handle It."
|
||||
description="Most homeowners don't realize their claim can be negotiated. We meet adjusters, document damage, and fight underpaid claims for you."
|
||||
useInvertedBackground={false}
|
||||
metrics={[{ value: "100%", title: "Claim Focus" }, { value: "Expert", title: "Adjuster Relations" }, { value: "Fast", title: "Documentation" }]}
|
||||
metrics={[
|
||||
{ value: "100%", title: "Claim Focus" },
|
||||
{ value: "Expert", title: "Adjuster Relations" },
|
||||
{ value: "Fast", title: "Documentation" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/old-man-with-laptop_1157-45380.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
title="Homeowners Trust Us"
|
||||
@@ -103,7 +96,6 @@ export default function LandingPage() {
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="process" data-section="process">
|
||||
<MetricCardSeven
|
||||
title="Simple. Stress-Free. Done Right."
|
||||
@@ -119,7 +111,6 @@ export default function LandingPage() {
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Common Questions"
|
||||
@@ -134,18 +125,19 @@ export default function LandingPage() {
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Ready to Start?"
|
||||
description="Get your free inspection today with no obligation."
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/notebook-near-measuring-tools_23-2147785582.jpg"
|
||||
inputs={[{ name: "name", type: "text", placeholder: "Full Name", required: true }, { name: "phone", type: "tel", placeholder: "Phone Number", required: true }]}
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "What roofing issues are you experiencing?", rows: 4 }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Chavez Brothers"
|
||||
|
||||
Reference in New Issue
Block a user