Update src/app/page.tsx

This commit is contained in:
2026-02-22 00:21:20 +00:00
parent 93876c3807
commit 684a7abab1

View File

@@ -24,14 +24,14 @@ export default function LandingPage() {
secondaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow"
headingFontWeight="normal" headingFontWeight="normal"
> >
<main className="flex flex-col items-center justify-center w-full">
<div id="nav" data-section="nav" className="w-full"> <div id="nav" data-section="nav" className="w-full">
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ name: "Services", id: "#services" }, { name: "Services", id: "#services" },
{ name: "Why Us", id: "#why-us" }, { name: "Why Us", id: "#why-us" },
{ name: "Promise", id: "#promise" }, { name: "Promise", id: "#promise" },
{ name: "FAQ", id: "#faq" }, { name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "#contact" }, { name: "Contact", id: "#contact" },
]} ]}
brandName="Johns Plumbing" brandName="Johns Plumbing"
@@ -70,7 +70,8 @@ export default function LandingPage() {
testimonials={[ testimonials={[
{ {
id: "1", name: "Eisa and Almond (Customer)", role: "Happy Homeowner", company: "Satisfied Customer", rating: 5, id: "1", name: "Eisa and Almond (Customer)", role: "Happy Homeowner", company: "Satisfied Customer", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/builder-man-wearing-construction-uniform-standing-with-arms-crossed-with-confident-smile-isolated-orange-wall_141793-14478.jpg", imageAlt: "Eisa and Almond, happy customers"}, imageSrc: "https://img.b2bpic.net/free-photo/builder-man-wearing-construction-uniform-standing-with-arms-crossed-with-confident-smile-isolated-orange-wall_141793-14478.jpg", imageAlt: "Eisa and Almond, happy customers"
},
]} ]}
kpiItems={[ kpiItems={[
{ value: "5", label: "Star Rating" }, { value: "5", label: "Star Rating" },
@@ -90,11 +91,14 @@ export default function LandingPage() {
description="Precision. Professionalism. Speed." description="Precision. Professionalism. Speed."
features={[ features={[
{ {
id: "01", title: "Repairs", description: "Fast diagnosis and expert repairs for leaks, clogs, broken pipes, and fixtures. We fix it right the first time.", imageSrc: "https://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg", imageAlt: "Plumbing repair tools"}, id: "01", title: "Repairs", description: "Fast diagnosis and expert repairs for leaks, clogs, broken pipes, and fixtures. We fix it right the first time.", imageSrc: "https://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg", imageAlt: "Plumbing repair tools"
},
{ {
id: "02", title: "Installations", description: "High-end fixture installs done cleanly and professionally. Faucets, water heaters, toilets, and more.", imageSrc: "https://img.b2bpic.net/free-photo/man-white-terry-bathrobe-filling-bathtub-with-water_259150-59739.jpg", imageAlt: "New faucet installation"}, id: "02", title: "Installations", description: "High-end fixture installs done cleanly and professionally. Faucets, water heaters, toilets, and more.", imageSrc: "https://img.b2bpic.net/free-photo/man-white-terry-bathrobe-filling-bathtub-with-water_259150-59739.jpg", imageAlt: "New faucet installation"
},
{ {
id: "03", title: "Emergency Service", description: "When something goes wrong, we move fast. Quick response. Immediate solutions.", imageSrc: "https://img.b2bpic.net/free-photo/male-worker-operating-machinery-factory_107420-96043.jpg", imageAlt: "Emergency plumbing service"}, id: "03", title: "Emergency Service", description: "When something goes wrong, we move fast. Quick response. Immediate solutions.", imageSrc: "https://img.b2bpic.net/free-photo/male-worker-operating-machinery-factory_107420-96043.jpg", imageAlt: "Emergency plumbing service"
},
]} ]}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -210,7 +214,6 @@ export default function LandingPage() {
className="mt-auto" className="mt-auto"
/> />
</div> </div>
</main>
</ThemeProvider> </ThemeProvider>
); );
} }