Update src/app/page.tsx
This commit is contained in:
266
src/app/page.tsx
266
src/app/page.tsx
@@ -11,7 +11,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import { Award, Clock, Users } from "lucide-react";
|
||||
import { Award, Clock, Users, Wrench, Zap, Shield, Droplets } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,25 +32,15 @@ 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: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Cut Rate Plumbing"
|
||||
/>
|
||||
@@ -59,51 +49,28 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
variant: "rotated-rays-animated"}}
|
||||
title="Fast & Affordable Plumbing Services in Michigan"
|
||||
description="Trusted local plumbers providing expert plumbing repairs, drain cleaning, sewer repair, water heater services, and emergency plumbing solutions for over 25 years."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:5867959955",
|
||||
},
|
||||
text: "Call Now", href: "tel:5867959955"},
|
||||
{
|
||||
text: "Request Service",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Request Service", href: "#contact"},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "h1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746388.jpg?_wi=1",
|
||||
imageAlt: "Professional residential plumbing repair",
|
||||
},
|
||||
id: "h1", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746388.jpg", imageAlt: "Professional residential plumbing repair"},
|
||||
{
|
||||
id: "h2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg",
|
||||
imageAlt: "Plumbing service van",
|
||||
},
|
||||
id: "h2", imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg", imageAlt: "Plumbing service van"},
|
||||
{
|
||||
id: "h3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg",
|
||||
imageAlt: "Fixing leaking kitchen pipes",
|
||||
},
|
||||
id: "h3", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg", imageAlt: "Fixing leaking kitchen pipes"},
|
||||
{
|
||||
id: "h4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721516.jpg",
|
||||
imageAlt: "Plumbing expert working with tools",
|
||||
},
|
||||
id: "h4", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721516.jpg", imageAlt: "Plumbing expert working with tools"},
|
||||
{
|
||||
id: "h5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-working_23-2149908142.jpg",
|
||||
imageAlt: "Residential pipe maintenance",
|
||||
},
|
||||
id: "h5", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-working_23-2149908142.jpg", imageAlt: "Residential pipe maintenance"},
|
||||
{
|
||||
id: "h6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-craftsman_23-2148137743.jpg",
|
||||
imageAlt: "Professional plumbing solutions",
|
||||
},
|
||||
id: "h6", imageSrc: "http://img.b2bpic.net/free-photo/portrait-craftsman_23-2148137743.jpg", imageAlt: "Professional plumbing solutions"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -115,19 +82,13 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: Award,
|
||||
label: "Years Experience",
|
||||
value: "30+",
|
||||
},
|
||||
label: "Years Experience", value: "30+"},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Happy Clients",
|
||||
value: "10,000+",
|
||||
},
|
||||
label: "Happy Clients", value: "10,000+"},
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Response Time",
|
||||
value: "24/7",
|
||||
},
|
||||
label: "Response Time", value: "24/7"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -139,28 +100,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Plumbing Repairs",
|
||||
description: "Leak repairs, pipe replacement, and faucet fixes.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-weathered-tire-covered-with-moss-sand-daytime_181624-20384.jpg?_wi=1",
|
||||
buttonIcon: "Wrench",
|
||||
title: "Plumbing Repairs", description: "Leak repairs, pipe replacement, and faucet fixes.", imageSrc: "http://img.b2bpic.net/free-photo/old-weathered-tire-covered-with-moss-sand-daytime_181624-20384.jpg", buttonIcon: Wrench,
|
||||
},
|
||||
{
|
||||
title: "Drain Cleaning",
|
||||
description: "Professional snaking for kitchens and bathrooms.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-carefully-soaping-hands-matte-black-kitchen-faucet-home-hygiene_169016-69668.jpg",
|
||||
buttonIcon: "Zap",
|
||||
title: "Drain Cleaning", description: "Professional snaking for kitchens and bathrooms.", imageSrc: "http://img.b2bpic.net/free-photo/person-carefully-soaping-hands-matte-black-kitchen-faucet-home-hygiene_169016-69668.jpg", buttonIcon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Sewer Services",
|
||||
description: "Line repair, replacement, and inspection.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11837.jpg",
|
||||
buttonIcon: "Shield",
|
||||
title: "Sewer Services", description: "Line repair, replacement, and inspection.", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11837.jpg", buttonIcon: Shield,
|
||||
},
|
||||
{
|
||||
title: "Water Heaters",
|
||||
description: "Installation, repair, and tankless solutions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-plumber-working-fix-problems_23-2150990693.jpg",
|
||||
buttonIcon: "Droplets",
|
||||
title: "Water Heaters", description: "Installation, repair, and tankless solutions.", imageSrc: "http://img.b2bpic.net/free-photo/view-plumber-working-fix-problems_23-2150990693.jpg", buttonIcon: Droplets,
|
||||
},
|
||||
]}
|
||||
title="Expert Plumbing Solutions"
|
||||
@@ -176,41 +125,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Pipe Repair",
|
||||
price: "Contact for Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/workshop-table_23-2147773402.jpg",
|
||||
},
|
||||
id: "p1", name: "Pipe Repair", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/workshop-table_23-2147773402.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Drain Snaking",
|
||||
price: "Contact for Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-298.jpg",
|
||||
},
|
||||
id: "p2", name: "Drain Snaking", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-298.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Sewer Line",
|
||||
price: "Contact for Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55519.jpg",
|
||||
},
|
||||
id: "p3", name: "Sewer Line", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55519.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Water Heater",
|
||||
price: "Contact for Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746386.jpg",
|
||||
},
|
||||
id: "p4", name: "Water Heater", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746386.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Sump Pump",
|
||||
price: "Contact for Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumber-making-time-out-gesture_1368-773.jpg",
|
||||
},
|
||||
id: "p5", name: "Sump Pump", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/plumber-making-time-out-gesture_1368-773.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Emergency Pipe",
|
||||
price: "Contact for Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55756.jpg",
|
||||
},
|
||||
id: "p6", name: "Emergency Pipe", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55756.jpg"},
|
||||
]}
|
||||
title="Featured Services"
|
||||
description="Our core residential and commercial offerings."
|
||||
@@ -224,53 +149,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "std",
|
||||
title: "Standard Repair",
|
||||
price: "Custom",
|
||||
period: "/per service",
|
||||
features: [
|
||||
"Leak detection",
|
||||
"Fixture repair",
|
||||
],
|
||||
id: "std", title: "Standard Repair", price: "Custom", period: "/per service", features: [
|
||||
"Leak detection", "Fixture repair"],
|
||||
button: {
|
||||
text: "Call Now",
|
||||
href: "tel:5867959955",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-repair-service_181624-27146.jpg",
|
||||
imageAlt: "Plumbing repair service",
|
||||
},
|
||||
text: "Call Now", href: "tel:5867959955"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-repair-service_181624-27146.jpg", imageAlt: "Plumbing repair service"},
|
||||
{
|
||||
id: "adv",
|
||||
title: "Sewer/Drain",
|
||||
price: "Custom",
|
||||
period: "/per service",
|
||||
features: [
|
||||
"Drain cleaning",
|
||||
"Sewer line inspect",
|
||||
],
|
||||
id: "adv", title: "Sewer/Drain", price: "Custom", period: "/per service", features: [
|
||||
"Drain cleaning", "Sewer line inspect"],
|
||||
button: {
|
||||
text: "Call Now",
|
||||
href: "tel:5867959955",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746388.jpg?_wi=2",
|
||||
imageAlt: "Plumbing repair service",
|
||||
},
|
||||
text: "Call Now", href: "tel:5867959955"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746388.jpg", imageAlt: "Plumbing repair service"},
|
||||
{
|
||||
id: "emg",
|
||||
title: "Emergency",
|
||||
price: "Call",
|
||||
period: "/24-7",
|
||||
features: [
|
||||
"Burst pipes",
|
||||
"Immediate response",
|
||||
],
|
||||
id: "emg", title: "Emergency", price: "Call", period: "/24-7", features: [
|
||||
"Burst pipes", "Immediate response"],
|
||||
button: {
|
||||
text: "Call Now",
|
||||
href: "tel:5867959955",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-weathered-tire-covered-with-moss-sand-daytime_181624-20384.jpg?_wi=2",
|
||||
imageAlt: "Plumbing repair service",
|
||||
},
|
||||
text: "Call Now", href: "tel:5867959955"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-weathered-tire-covered-with-moss-sand-daytime_181624-20384.jpg", imageAlt: "Plumbing repair service"},
|
||||
]}
|
||||
title="Simple & Honest Pricing"
|
||||
description="Affordable solutions for your plumbing needs."
|
||||
@@ -285,45 +180,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah Johnson",
|
||||
role: "Homeowner",
|
||||
company: "Sterling Heights",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-office_329181-19343.jpg",
|
||||
},
|
||||
id: "t1", name: "Sarah Johnson", role: "Homeowner", company: "Sterling Heights", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-office_329181-19343.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Michael Chen",
|
||||
role: "Business Owner",
|
||||
company: "Warren",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pleased-successful-female-administrator-office_273609-4124.jpg",
|
||||
},
|
||||
id: "t2", name: "Michael Chen", role: "Business Owner", company: "Warren", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pleased-successful-female-administrator-office_273609-4124.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Property Mgr",
|
||||
company: "Detroit",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-man-showing-approval_23-2148230800.jpg",
|
||||
},
|
||||
id: "t3", name: "Emily Rodriguez", role: "Property Mgr", company: "Detroit", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-man-showing-approval_23-2148230800.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David Kim",
|
||||
role: "Homeowner",
|
||||
company: "Michigan",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-overall-cap-smiling_23-2148073095.jpg",
|
||||
},
|
||||
id: "t4", name: "David Kim", role: "Homeowner", company: "Michigan", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-overall-cap-smiling_23-2148073095.jpg"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Lisa Wilson",
|
||||
role: "Homeowner",
|
||||
company: "Sterling Heights",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-female-shoppers-staring-accessories-shop-window-holding-shopping-bags-standing-store-outside-front-view-through-glass-window-shopping-concept_74855-11592.jpg",
|
||||
},
|
||||
id: "t5", name: "Lisa Wilson", role: "Homeowner", company: "Sterling Heights", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-female-shoppers-staring-accessories-shop-window-holding-shopping-bags-standing-store-outside-front-view-through-glass-window-shopping-concept_74855-11592.jpg"},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Reliable plumbing services in Sterling Heights and Warren."
|
||||
@@ -334,8 +204,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Contact Us"
|
||||
title="Request Service"
|
||||
description="Call us at (586) 795-9955 for urgent plumbing help."
|
||||
@@ -348,42 +217,27 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
title: "About", items: [
|
||||
{
|
||||
label: "Family Owned",
|
||||
href: "#",
|
||||
},
|
||||
label: "Family Owned", href: "#"},
|
||||
{
|
||||
label: "Since 1992",
|
||||
href: "#",
|
||||
},
|
||||
label: "Since 1992", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Plumbing Repairs",
|
||||
href: "#features",
|
||||
},
|
||||
label: "Plumbing Repairs", href: "#features"},
|
||||
{
|
||||
label: "Emergency Plumbing",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Emergency Plumbing", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "(586) 795-9955",
|
||||
href: "tel:5867959955",
|
||||
},
|
||||
label: "(586) 795-9955", href: "tel:5867959955"},
|
||||
{
|
||||
label: "eaglepaul2@yahoo.com",
|
||||
href: "mailto:eaglepaul2@yahoo.com",
|
||||
},
|
||||
label: "eaglepaul2@yahoo.com", href: "mailto:eaglepaul2@yahoo.com"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user