Update src/app/page.tsx
This commit is contained in:
283
src/app/page.tsx
283
src/app/page.tsx
@@ -32,25 +32,15 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Why Choose Us",
|
||||
id: "#why-us",
|
||||
},
|
||||
name: "Why Choose Us", id: "#why-us"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "#reviews",
|
||||
},
|
||||
name: "Reviews", id: "#reviews"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Smitty's Plumbing"
|
||||
/>
|
||||
@@ -60,89 +50,49 @@ export default function LandingPage() {
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Your Plumbing Fixed Right."
|
||||
description="Hamilton County's most trusted plumber. From emergency leaks to full installations — Smitty's gets the job done fast, clean, and guaranteed."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Marcus R.",
|
||||
handle: "Google Review, Norwood, OH",
|
||||
testimonial: "Had them run water lines and replace vent and clean out. Super responsive and very easy to work with. Would definitely recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg",
|
||||
imageAlt: "Marcus R.",
|
||||
tagIcon: Star,
|
||||
name: "Marcus R.", handle: "Google Review, Norwood, OH", testimonial: "Had them run water lines and replace vent and clean out. Super responsive and very easy to work with. Would definitely recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg", imageAlt: "Marcus R."
|
||||
},
|
||||
{
|
||||
name: "Sarah L.",
|
||||
handle: "Google Review, Cincinnati, OH",
|
||||
testimonial: "Cleared my sink in no time and inspected the line for follow up service. Professional, clean, and fast. This is my go-to plumber from now on.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-bed-showing-ok-gesture_23-2147767529.jpg",
|
||||
imageAlt: "Sarah L.",
|
||||
tagIcon: Star,
|
||||
name: "Sarah L.", handle: "Google Review, Cincinnati, OH", testimonial: "Cleared my sink in no time and inspected the line for follow up service. Professional, clean, and fast. This is my go-to plumber from now on.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-bed-showing-ok-gesture_23-2147767529.jpg", imageAlt: "Sarah L."
|
||||
},
|
||||
{
|
||||
name: "James T.",
|
||||
handle: "Google Review, Blue Ash, OH",
|
||||
testimonial: "Called at 11pm with a burst pipe emergency. They were at my door in under an hour and had everything fixed before midnight. Incredible service.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-joyful-bearded-guy-posing-indoors_74855-2696.jpg",
|
||||
imageAlt: "James T.",
|
||||
tagIcon: Star,
|
||||
name: "James T.", handle: "Google Review, Blue Ash, OH", testimonial: "Called at 11pm with a burst pipe emergency. They were at my door in under an hour and had everything fixed before midnight. Incredible service.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-joyful-bearded-guy-posing-indoors_74855-2696.jpg", imageAlt: "James T."
|
||||
},
|
||||
{
|
||||
name: "Lisa K.",
|
||||
handle: "Google Review, Hyde Park, OH",
|
||||
testimonial: "Smitty's Plumbing replaced our old water heater quickly and efficiently. The team was friendly, professional, and left the area spotless. Highly recommend their services!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg",
|
||||
imageAlt: "Lisa K.",
|
||||
tagIcon: Star,
|
||||
name: "Lisa K.", handle: "Google Review, Hyde Park, OH", testimonial: "Smitty's Plumbing replaced our old water heater quickly and efficiently. The team was friendly, professional, and left the area spotless. Highly recommend their services!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg", imageAlt: "Lisa K."
|
||||
},
|
||||
{
|
||||
name: "Robert M.",
|
||||
handle: "Google Review, Montgomery, OH",
|
||||
testimonial: "Our drain was completely blocked, and Smitty's came out on a Saturday morning. They fixed it fast, explained everything, and gave us tips for prevention. Excellent service!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-reading-newspaper-coffee-shop_1170-2058.jpg",
|
||||
imageAlt: "Robert M.",
|
||||
tagIcon: Star,
|
||||
},
|
||||
name: "Robert M.", handle: "Google Review, Montgomery, OH", testimonial: "Our drain was completely blocked, and Smitty's came out on a Saturday morning. They fixed it fast, explained everything, and gave us tips for prevention. Excellent service!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-reading-newspaper-coffee-shop_1170-2058.jpg", imageAlt: "Robert M."
|
||||
}
|
||||
]}
|
||||
tag="Available Right Now — 24/7"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call (513) 619-0245",
|
||||
href: "tel:+15136190245",
|
||||
},
|
||||
text: "Call (513) 619-0245", href: "tel:+15136190245"},
|
||||
{
|
||||
text: "Get a Free Quote →",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get a Free Quote →", href: "#contact"},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-man-overall-with-crossed-arms_23-2148073072.jpg",
|
||||
alt: "Plumber 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-man-overall-with-crossed-arms_23-2148073072.jpg", alt: "Plumber 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-female-standing-with-crossed-arms-worker-uniform-looking-hesitant-front-view_176474-34535.jpg",
|
||||
alt: "Plumber 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-female-standing-with-crossed-arms-worker-uniform-looking-hesitant-front-view_176474-34535.jpg", alt: "Plumber 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pleased-young-male-builder-wearing-uniform-safety-helmet-points-camera-pink_141793-74591.jpg",
|
||||
alt: "Plumber 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/pleased-young-male-builder-wearing-uniform-safety-helmet-points-camera-pink_141793-74591.jpg", alt: "Plumber 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/middle-aged-business-man-hard-hat_1303-23577.jpg",
|
||||
alt: "Plumber 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/middle-aged-business-man-hard-hat_1303-23577.jpg", alt: "Plumber 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-person-creating-digital-diy-craft-content_23-2151515886.jpg",
|
||||
alt: "Experienced plumber",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/view-person-creating-digital-diy-craft-content_23-2151515886.jpg", alt: "Experienced plumber"},
|
||||
]}
|
||||
avatarText="Rated 4.7★ with 372 Reviews"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/black-white-vintage-portrait-man-doing-housework-household-chores_23-2151448645.jpg"
|
||||
@@ -150,29 +100,19 @@ export default function LandingPage() {
|
||||
tagIcon={Clock}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Emergency Service",
|
||||
icon: LifeBuoy,
|
||||
type: "text-icon", text: "Emergency Service", icon: LifeBuoy,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Residential & Commercial",
|
||||
icon: Building,
|
||||
type: "text-icon", text: "Residential & Commercial", icon: Building,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Licensed & Insured",
|
||||
icon: ShieldCheck,
|
||||
type: "text-icon", text: "Licensed & Insured", icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Free Quotes",
|
||||
icon: FileText,
|
||||
type: "text-icon", text: "Free Quotes", icon: FileText,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Customer Satisfaction",
|
||||
icon: Smile,
|
||||
type: "text-icon", text: "Customer Satisfaction", icon: Smile,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -186,32 +126,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "rating",
|
||||
value: "4.7★",
|
||||
title: "Google Rating",
|
||||
description: "Consistently high scores from our valued customers.",
|
||||
icon: Star,
|
||||
id: "rating", value: "4.7★", title: "Google Rating", description: "Consistently high scores from our valued customers.", icon: Star,
|
||||
},
|
||||
{
|
||||
id: "reviews",
|
||||
value: "372",
|
||||
title: "5-Star Reviews",
|
||||
description: "Hundreds of happy customers across Hamilton County.",
|
||||
icon: MessageSquare,
|
||||
id: "reviews", value: "372", title: "5-Star Reviews", description: "Hundreds of happy customers across Hamilton County.", icon: MessageSquare,
|
||||
},
|
||||
{
|
||||
id: "availability",
|
||||
value: "24/7",
|
||||
title: "Always Available",
|
||||
description: "Emergency services whenever you need us, day or night.",
|
||||
icon: Clock,
|
||||
id: "availability", value: "24/7", title: "Always Available", description: "Emergency services whenever you need us, day or night.", icon: Clock,
|
||||
},
|
||||
{
|
||||
id: "experience",
|
||||
value: "15+",
|
||||
title: "Years in Business",
|
||||
description: "Over a decade of trusted plumbing expertise.",
|
||||
icon: Award,
|
||||
id: "experience", value: "15+", title: "Years in Business", description: "Over a decade of trusted plumbing expertise.", icon: Award,
|
||||
},
|
||||
]}
|
||||
title="Quick Facts"
|
||||
@@ -227,49 +151,31 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
icon: Droplet,
|
||||
title: "Drain Cleaning",
|
||||
description: "Stubborn clogs cleared fast using professional-grade equipment. Sink, shower, and main line cleaning.",
|
||||
},
|
||||
title: "Drain Cleaning", description: "Stubborn clogs cleared fast using professional-grade equipment. Sink, shower, and main line cleaning."},
|
||||
{
|
||||
icon: Flame,
|
||||
title: "Water Heater Services",
|
||||
description: "Installation, repair, and replacement of all water heater types. Hot water restored same day.",
|
||||
},
|
||||
title: "Water Heater Services", description: "Installation, repair, and replacement of all water heater types. Hot water restored same day."},
|
||||
{
|
||||
icon: Search,
|
||||
title: "Leak Detection & Repair",
|
||||
description: "Advanced leak detection technology to find hidden leaks before they cause major damage.",
|
||||
},
|
||||
title: "Leak Detection & Repair", description: "Advanced leak detection technology to find hidden leaks before they cause major damage."},
|
||||
{
|
||||
icon: Droplets,
|
||||
title: "Toilet & Faucet Services",
|
||||
description: "Installation and repair of toilets, faucets, and fixtures. Any brand, any style.",
|
||||
},
|
||||
title: "Toilet & Faucet Services", description: "Installation and repair of toilets, faucets, and fixtures. Any brand, any style."},
|
||||
{
|
||||
icon: Wrench,
|
||||
title: "Sewer Cleaning & Repair",
|
||||
description: "Full sewer line inspection, cleaning, and repair including plumbing excavation when needed.",
|
||||
},
|
||||
title: "Sewer Cleaning & Repair", description: "Full sewer line inspection, cleaning, and repair including plumbing excavation when needed."},
|
||||
{
|
||||
icon: Flame,
|
||||
title: "Gas Line Services",
|
||||
description: "Licensed gas leak detection, gas line installation, and repair. Safety is our top priority.",
|
||||
},
|
||||
title: "Gas Line Services", description: "Licensed gas leak detection, gas line installation, and repair. Safety is our top priority."},
|
||||
{
|
||||
icon: Droplets,
|
||||
title: "Sump Pump Services",
|
||||
description: "Sump pump installation, repair, and maintenance to keep your basement dry year-round.",
|
||||
},
|
||||
title: "Sump Pump Services", description: "Sump pump installation, repair, and maintenance to keep your basement dry year-round."},
|
||||
{
|
||||
icon: Droplets,
|
||||
title: "Shower & Tub Installation",
|
||||
description: "Complete shower and bathtub installation plus shower valve repair and wall restoration.",
|
||||
},
|
||||
title: "Shower & Tub Installation", description: "Complete shower and bathtub installation plus shower valve repair and wall restoration."},
|
||||
{
|
||||
icon: Building,
|
||||
title: "Commercial Plumbing",
|
||||
description: "Full-service commercial plumbing for businesses, offices, and multi-unit properties.",
|
||||
},
|
||||
title: "Commercial Plumbing", description: "Full-service commercial plumbing for businesses, offices, and multi-unit properties."},
|
||||
]}
|
||||
title="Expert Plumbing For Every Need"
|
||||
description="Residential or commercial — if it involves water, gas, or drains, Smitty's handles it with skill and speed."
|
||||
@@ -281,18 +187,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "We Don't Just Fix It. We Fix It Right.",
|
||||
},
|
||||
type: "text", content: "We Don't Just Fix It. We Fix It Right."},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote →",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get a Free Quote →", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/freight-parcel-inspiration-uniform-art_1134-1177.jpg"
|
||||
imageAlt="Plumber holding a wrench, standing in front of pipes."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -301,35 +201,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Marcus R.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-woman-posing_344912-1420.jpg",
|
||||
imageAlt: "Marcus R.",
|
||||
},
|
||||
id: "1", name: "Marcus R.", imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-woman-posing_344912-1420.jpg", imageAlt: "Marcus R."},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sarah L.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg",
|
||||
imageAlt: "Sarah L.",
|
||||
},
|
||||
id: "2", name: "Sarah L.", imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg", imageAlt: "Sarah L."},
|
||||
{
|
||||
id: "3",
|
||||
name: "James T.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-close-up-street_1321-25.jpg",
|
||||
imageAlt: "James T.",
|
||||
},
|
||||
id: "3", name: "James T.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-close-up-street_1321-25.jpg", imageAlt: "James T."},
|
||||
{
|
||||
id: "4",
|
||||
name: "Lisa K.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-dark-jacket-smiling-pink-background_179666-14695.jpg",
|
||||
imageAlt: "Lisa K.",
|
||||
},
|
||||
id: "4", name: "Lisa K.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-dark-jacket-smiling-pink-background_179666-14695.jpg", imageAlt: "Lisa K."},
|
||||
{
|
||||
id: "5",
|
||||
name: "Robert M.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-bearded-man-suit-laughing-smiling-standing-white-background_1258-155212.jpg",
|
||||
imageAlt: "Robert M.",
|
||||
},
|
||||
id: "5", name: "Robert M.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-bearded-man-suit-laughing-smiling-standing-white-background_1258-155212.jpg", imageAlt: "Robert M."},
|
||||
]}
|
||||
cardTitle="Trusted by Hundreds Across Hamilton County"
|
||||
cardTag="What Customers Say"
|
||||
@@ -342,17 +222,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Norwood",
|
||||
"Cincinnati",
|
||||
"Blue Ash",
|
||||
"Hyde Park",
|
||||
"Madeira",
|
||||
"Montgomery",
|
||||
"Sharonville",
|
||||
"Forest Park",
|
||||
"Fairfax",
|
||||
"Mariemont",
|
||||
]}
|
||||
"Norwood", "Cincinnati", "Blue Ash", "Hyde Park", "Madeira", "Montgomery", "Sharonville", "Forest Park", "Fairfax", "Mariemont"]}
|
||||
title="Serving Hamilton County & Surrounding Areas"
|
||||
description="Based in Norwood, OH, Smitty's Plumbing serves the greater Cincinnati metro with the same fast, reliable service every time."
|
||||
/>
|
||||
@@ -362,8 +232,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Ready to Get Started?"
|
||||
title="Don't Let a Plumbing Problem Ruin Your Day"
|
||||
description="(513) 619-0245\nAvailable 24 hours a day, 7 days a week — holidays included.\n\nPhone: (513) 619-0245\nAddress: 2033 Maple Ave, Norwood, OH 45212\nHours: Open 24 Hours — 7 Days a Week\nService Area: Hamilton County & Surrounding Areas\n\nFill out the form below to request a free quote, and we'll get back to you within the hour."
|
||||
@@ -380,57 +249,33 @@ export default function LandingPage() {
|
||||
logoText="Smitty's Plumbing"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Drain Cleaning",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Drain Cleaning", href: "#services"},
|
||||
{
|
||||
label: "Water Heater Services",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Water Heater Services", href: "#services"},
|
||||
{
|
||||
label: "Leak Detection",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Leak Detection", href: "#services"},
|
||||
{
|
||||
label: "Gas Line Services",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Gas Line Services", href: "#services"},
|
||||
{
|
||||
label: "Sewer Repair",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Sewer Repair", href: "#services"},
|
||||
{
|
||||
label: "Emergency Plumbing",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Emergency Plumbing", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "(513) 619-0245",
|
||||
href: "tel:+15136190245",
|
||||
},
|
||||
label: "(513) 619-0245", href: "tel:+15136190245"},
|
||||
{
|
||||
label: "Request a Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Request a Quote", href: "#contact"},
|
||||
{
|
||||
label: "2033 Maple Ave",
|
||||
href: "https://maps.app.goo.gl/address",
|
||||
},
|
||||
label: "2033 Maple Ave", href: "https://maps.app.goo.gl/address"},
|
||||
{
|
||||
label: "Norwood, OH 45212",
|
||||
href: "https://maps.app.goo.gl/address",
|
||||
},
|
||||
label: "Norwood, OH 45212", href: "https://maps.app.goo.gl/address"},
|
||||
{
|
||||
label: "Open 24 Hours",
|
||||
href: "#",
|
||||
},
|
||||
label: "Open 24 Hours", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user