Update src/app/page.tsx

This commit is contained in:
2026-04-09 21:35:08 +00:00
parent e18e78ef27
commit d570631c63

View File

@@ -30,21 +30,13 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "home",
},
name: "Home", id: "home"},
{
name: "Why Us",
id: "about",
},
name: "Why Us", id: "about"},
{
name: "Services",
id: "services",
},
name: "Services", id: "services"},
{
name: "Reviews",
id: "reviews",
},
name: "Reviews", id: "reviews"},
]}
brandName="Premier Rooter"
/>
@@ -56,78 +48,39 @@ export default function LandingPage() {
description="Fast, reliable, and expert plumbing solutions — done right the first time."
testimonials={[
{
name: "Sarah J.",
handle: "@sarahj",
testimonial: "Very friendly and knowledgeable. Quick, efficient, and a great price!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg?_wi=1",
imageAlt: "professional plumber smiling tools",
},
name: "Sarah J.", handle: "@sarahj", testimonial: "Very friendly and knowledgeable. Quick, efficient, and a great price!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg", imageAlt: "professional plumber smiling tools"},
{
name: "Michael C.",
handle: "@michealc",
testimonial: "Upfront, fast service. Everything is now working flawlessly!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg?_wi=1",
imageAlt: "happy homeowner portrait",
},
name: "Michael C.", handle: "@michealc", testimonial: "Upfront, fast service. Everything is now working flawlessly!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg", imageAlt: "happy homeowner portrait"},
{
name: "Emily R.",
handle: "@emilyr",
testimonial: "Professional, reliable, and highly skilled. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg?_wi=1",
imageAlt: "smiling middle-aged man",
},
name: "Emily R.", handle: "@emilyr", testimonial: "Professional, reliable, and highly skilled. Highly recommend!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg", imageAlt: "smiling middle-aged man"},
{
name: "David K.",
handle: "@davidk",
testimonial: "Exceptional communication throughout the repair process.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-phone-medium-shot_23-2149246349.jpg?_wi=1",
imageAlt: "professional young woman",
},
name: "David K.", handle: "@davidk", testimonial: "Exceptional communication throughout the repair process.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-phone-medium-shot_23-2149246349.jpg", imageAlt: "professional young woman"},
{
name: "Laura P.",
handle: "@laurap",
testimonial: "Fast response time during an emergency leak. Fantastic crew!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-mother-home_23-2148321636.jpg?_wi=1",
imageAlt: "mature homeowner smiling",
},
name: "Laura P.", handle: "@laurap", testimonial: "Fast response time during an emergency leak. Fantastic crew!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-mother-home_23-2148321636.jpg", imageAlt: "mature homeowner smiling"},
]}
buttons={[
{
text: "Call Now",
href: "tel:4044213858",
},
text: "Call Now", href: "tel:4044213858"},
{
text: "Get a Quote",
href: "#contact",
},
text: "Get a Quote", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg",
alt: "Sarah",
},
src: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg", alt: "Sarah"},
{
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg",
alt: "Michael",
},
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg", alt: "Michael"},
{
src: "http://img.b2bpic.net/free-photo/smiley-woman-holding-phone-medium-shot_23-2149246349.jpg",
alt: "Emily",
},
src: "http://img.b2bpic.net/free-photo/smiley-woman-holding-phone-medium-shot_23-2149246349.jpg", alt: "Emily"},
{
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-mother-home_23-2148321636.jpg",
alt: "David",
},
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-mother-home_23-2148321636.jpg", alt: "David"},
{
src: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg",
alt: "Laura",
},
src: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg", alt: "Laura"},
]}
avatarText="Trusted by 500+ Local Homeowners"
/>
@@ -139,8 +92,7 @@ export default function LandingPage() {
title="Why Homeowners Trust Us"
buttons={[
{
text: "Learn More",
},
text: "Learn More"},
]}
/>
</div>
@@ -152,76 +104,52 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
title: "Water Heater Repair",
description: "Expert repair and installation of tank and tankless water heaters.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg?_wi=3",
},
title: "Water Heater Repair", description: "Expert repair and installation of tank and tankless water heaters.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg", imageAlt: "young man smiling casual"},
items: [
{
icon: CheckCircle,
text: "Installation",
},
text: "Installation"},
{
icon: CheckCircle,
text: "Repair",
},
text: "Repair"},
{
icon: CheckCircle,
text: "Maintenance",
},
text: "Maintenance"},
],
reverse: false,
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg?_wi=1",
imageAlt: "young man smiling casual",
},
{
title: "Drain Cleaning",
description: "Full-service drain cleaning to clear clogs and restore flow.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg?_wi=4",
},
title: "Drain Cleaning", description: "Full-service drain cleaning to clear clogs and restore flow.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-with-different-construction-tools-wooden-background_169016-24026.jpg", imageAlt: "plumbing tools on workbench"},
items: [
{
icon: CheckCircle,
text: "Hydro-jetting",
},
text: "Hydro-jetting"},
{
icon: CheckCircle,
text: "Snaking",
},
text: "Snaking"},
{
icon: CheckCircle,
text: "Inspection",
},
text: "Inspection"},
],
reverse: true,
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-with-different-construction-tools-wooden-background_169016-24026.jpg?_wi=1",
imageAlt: "plumbing tools on workbench",
},
{
title: "Emergency Plumbing",
description: "Reliable emergency plumbing services available when you need them most.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg?_wi=5",
},
title: "Emergency Plumbing", description: "Reliable emergency plumbing services available when you need them most.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg", imageAlt: "professional plumber smiling tools"},
items: [
{
icon: CheckCircle,
text: "24/7 Availability",
},
text: "24/7 Availability"},
{
icon: CheckCircle,
text: "Fast Dispatch",
},
text: "Fast Dispatch"},
{
icon: CheckCircle,
text: "Expert Technicians",
},
text: "Expert Technicians"},
],
reverse: false,
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg?_wi=6",
imageAlt: "professional plumber smiling tools",
},
]}
title="Our Professional Services"
@@ -237,45 +165,20 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah Johnson",
role: "Homeowner",
company: "Local Resident",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg?_wi=2",
},
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Local Resident", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg"},
{
id: "2",
name: "Michael Chen",
role: "Client",
company: "Local Business",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg?_wi=2",
},
id: "2", name: "Michael Chen", role: "Client", company: "Local Business", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg"},
{
id: "3",
name: "Emily Rodriguez",
role: "Homeowner",
company: "Local Resident",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-phone-medium-shot_23-2149246349.jpg?_wi=2",
},
id: "3", name: "Emily Rodriguez", role: "Homeowner", company: "Local Resident", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-phone-medium-shot_23-2149246349.jpg"},
{
id: "4",
name: "David Kim",
role: "Client",
company: "Neighborhood Assoc.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-mother-home_23-2148321636.jpg?_wi=2",
},
id: "4", name: "David Kim", role: "Client", company: "Neighborhood Assoc.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-mother-home_23-2148321636.jpg"},
{
id: "5",
name: "Laura Price",
role: "Homeowner",
company: "Local Resident",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg?_wi=2",
},
id: "5", name: "Laura Price", role: "Homeowner", company: "Local Resident", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg"},
]}
title="Customer Stories"
description="See why neighbors choose us."
@@ -286,12 +189,11 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={true}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
tag="Ready to fix your plumbing?"
title="Get a Trusted Professional"
description="Call us now at (404) 421-3858 or fill out the form for a free, no-obligation quote today."
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-composition-with-different-construction-tools-wooden-background_169016-24026.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-composition-with-different-construction-tools-wooden-background_169016-24026.jpg"
mediaAnimation="slide-up"
mediaPosition="right"
/>
@@ -301,29 +203,19 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Services",
href: "#services",
},
label: "Services", href: "#services"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact Us",
href: "#contact",
},
label: "Contact Us", href: "#contact"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}