Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 67f980e8bc | |||
| c8f2c1dfc5 | |||
| d801b1be99 | |||
| 1673abc324 |
160
src/app/page.tsx
160
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#features",
|
||||
},
|
||||
name: "Services", id: "#features"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="D & D Plumbing"
|
||||
/>
|
||||
@@ -57,32 +49,22 @@ export default function LandingPage() {
|
||||
description="D & D Plumbing provides reliable and efficient plumbing solutions for your home and business. From leak repairs to full installations, we have you covered."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now: +1 380-220-8300",
|
||||
href: "tel:+13802208300",
|
||||
},
|
||||
text: "Call Now: +1 380-220-8300", href: "tel:+13802208300"},
|
||||
{
|
||||
text: "View Services", href: "#features"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-new-flat_1098-17257.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-new-flat_1098-17257.jpg", alt: "Customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/welcome-portrait-cheerful-african-woman-inviting-visitor-enter-his-home-happy-young-woman-standing-doorway-modern-apartment-showing-living-room-with-hand_657921-1689.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/welcome-portrait-cheerful-african-woman-inviting-visitor-enter-his-home-happy-young-woman-standing-doorway-modern-apartment-showing-living-room-with-hand_657921-1689.jpg", alt: "Customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-couple-smiling-very-happy-showing-keys-new-home-moving-buying-new-apartmet-concept_839833-22727.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-couple-smiling-very-happy-showing-keys-new-home-moving-buying-new-apartmet-concept_839833-22727.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-holding-house-star-icons_53876-71032.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-holding-house-star-icons_53876-71032.jpg", alt: "Customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-man-with-miniature-his-future-home_1149-759.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-man-with-miniature-his-future-home_1149-759.jpg", alt: "Customer 5"},
|
||||
]}
|
||||
avatarText="Trusted by 500+ happy Columbus homeowners"
|
||||
/>
|
||||
@@ -104,32 +86,25 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Leak Repair",
|
||||
tags: [
|
||||
"Emergency",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg",
|
||||
},
|
||||
id: "f1", title: "Leak Repair", tags: [
|
||||
"Emergency"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg"},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Drain Cleaning",
|
||||
tags: [
|
||||
"Routine",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bleu-run-scarce-bathroom-washroom_1172-546.jpg",
|
||||
},
|
||||
id: "f2", title: "Drain Cleaning", tags: [
|
||||
"Routine"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bleu-run-scarce-bathroom-washroom_1172-546.jpg"},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Water Heater Install",
|
||||
tags: [
|
||||
"Installation",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334229.jpg",
|
||||
},
|
||||
id: "f3", title: "Water Heater Install", tags: [
|
||||
"Installation"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334229.jpg"},
|
||||
]}
|
||||
title="Our Specialized Services"
|
||||
description="We offer a wide range of plumbing services designed to keep your home running smoothly."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Service", href: "#contact"}
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -140,26 +115,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "24/7",
|
||||
title: "Availability",
|
||||
description: "Around the clock support",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-wall-clock-still-life_23-2150533073.jpg",
|
||||
},
|
||||
id: "m1", value: "24/7", title: "Availability", description: "Around the clock support", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-wall-clock-still-life_23-2150533073.jpg"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "100%",
|
||||
title: "Satisfaction",
|
||||
description: "Guaranteed service",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/review-increase-rating-ranking-evaluation-classification-concept-businessman-draw-five-yellow-star-increase-rating-his-company_1212-723.jpg",
|
||||
},
|
||||
id: "m2", value: "100%", title: "Satisfaction", description: "Guaranteed service", imageSrc: "http://img.b2bpic.net/free-photo/review-increase-rating-ranking-evaluation-classification-concept-businessman-draw-five-yellow-star-increase-rating-his-company_1212-723.jpg"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "15+",
|
||||
title: "Years Experience",
|
||||
description: "Proven local expertise",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-mechanic-working-his-workshop_23-2148970742.jpg",
|
||||
},
|
||||
id: "m3", value: "15+", title: "Years Experience", description: "Proven local expertise", imageSrc: "http://img.b2bpic.net/free-photo/male-mechanic-working-his-workshop_23-2148970742.jpg"},
|
||||
]}
|
||||
title="Why Choose Us?"
|
||||
description="Quality you can depend on, every single time."
|
||||
@@ -174,25 +134,15 @@ export default function LandingPage() {
|
||||
author="Sarah Miller"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-man-with-miniature-his-future-home_1149-759.jpg",
|
||||
alt: "Sarah Miller",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-man-with-miniature-his-future-home_1149-759.jpg", alt: "Sarah Miller"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-new-flat_1098-17257.jpg",
|
||||
alt: "Mark J.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-new-flat_1098-17257.jpg", alt: "Mark J."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/welcome-portrait-cheerful-african-woman-inviting-visitor-enter-his-home-happy-young-woman-standing-doorway-modern-apartment-showing-living-room-with-hand_657921-1689.jpg",
|
||||
alt: "Elena R.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/welcome-portrait-cheerful-african-woman-inviting-visitor-enter-his-home-happy-young-woman-standing-doorway-modern-apartment-showing-living-room-with-hand_657921-1689.jpg", alt: "Elena R."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-couple-smiling-very-happy-showing-keys-new-home-moving-buying-new-apartmet-concept_839833-22727.jpg",
|
||||
alt: "David S.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-couple-smiling-very-happy-showing-keys-new-home-moving-buying-new-apartmet-concept_839833-22727.jpg", alt: "David S."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-holding-house-star-icons_53876-71032.jpg",
|
||||
alt: "Linda P.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-holding-house-star-icons_53876-71032.jpg", alt: "Linda P."},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -205,20 +155,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do you offer 24/7 service?",
|
||||
content: "Yes, we are available anytime for emergencies.",
|
||||
},
|
||||
id: "q1", title: "Do you offer 24/7 service?", content: "Yes, we are available anytime for emergencies."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "What areas do you cover?",
|
||||
content: "We primarily serve Columbus, OH, and nearby areas.",
|
||||
},
|
||||
id: "q2", title: "What areas do you cover?", content: "We primarily serve Columbus, OH, and nearby areas."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "How can I schedule a visit?",
|
||||
content: "You can call us directly at +1 380-220-8300.",
|
||||
},
|
||||
id: "q3", title: "How can I schedule a visit?", content: "You can call us directly at +1 380-220-8300."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Got questions about our services? We have answers."
|
||||
@@ -230,8 +171,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Get in Touch"
|
||||
title="Need a Reliable Plumber?"
|
||||
description="Visit us at 3220 Valley Park Ave, Columbus, or give us a call today."
|
||||
@@ -246,29 +186,19 @@ export default function LandingPage() {
|
||||
logoText="D & D Plumbing"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Leak Repair",
|
||||
href: "#",
|
||||
},
|
||||
label: "Leak Repair", href: "#"},
|
||||
{
|
||||
label: "Drain Cleaning",
|
||||
href: "#",
|
||||
},
|
||||
label: "Drain Cleaning", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "About Us", href: "#"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#",
|
||||
},
|
||||
label: "Contact", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -277,4 +207,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user