Switch to version 6: modified src/app/services/page.tsx

This commit is contained in:
2026-05-11 01:52:52 +00:00
parent c97a76facd
commit 887d3a8a8b

View File

@@ -26,13 +26,21 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"},
name: "Home",
id: "/",
},
{
name: "Services", id: "/services"},
name: "Services",
id: "/services",
},
{
name: "Gallery", id: "/gallery"},
name: "Gallery",
id: "/gallery",
},
{
name: "Contact", id: "/contact"},
name: "Contact",
id: "/contact",
},
]}
brandName="H & M Handyman Solutions"
/>
@@ -44,13 +52,17 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Full Service List"
description="From small fixes to major improvements, we handle it all."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DYa0GPktoo5iA8DC3teDpCZ1Xu/hanser-ramirez-professional-portrait-1778471310234-b9c0d1e2.png?_wi=4"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DYa0GPktoo5iA8DC3teDpCZ1Xu/professional-portrait-of-a-handyman-in-c-1778461846342-002dcb7e.png?_wi=4"
mediaAnimation="slide-up"
bulletPoints={[
{
title: "Carpentry", description: "Custom shelves and repairs."},
title: "Carpentry",
description: "Custom shelves and repairs.",
},
{
title: "Plumbing", description: "Leak fixes and fixture swaps."},
title: "Plumbing",
description: "Leak fixes and fixture swaps.",
},
]}
/>
</div>
@@ -64,11 +76,16 @@ export default function LandingPage() {
description="Our work standards set us apart from the rest."
positiveCard={{
items: [
"Fast turnaround", "Clean workspace", "Quality materials"],
"Fast turnaround",
"Clean workspace",
"Quality materials",
],
}}
negativeCard={{
items: [
"Hidden fees", "Cutting corners"],
"Hidden fees",
"Cutting corners",
],
}}
/>
</div>
@@ -78,23 +95,37 @@ export default function LandingPage() {
logoText="H & M Handyman Solutions"
columns={[
{
title: "Services", items: [
title: "Services",
items: [
{
label: "Drywall Repair", href: "/services"},
label: "Drywall Repair",
href: "/services",
},
{
label: "Painting", href: "/services"},
label: "Painting",
href: "/services",
},
{
label: "Fixture Installation", href: "/services"},
label: "Fixture Installation",
href: "/services",
},
],
},
{
title: "Company", items: [
title: "Company",
items: [
{
label: "About Us", href: "/about"},
label: "About Us",
href: "/about",
},
{
label: "Contact", href: "/contact"},
label: "Contact",
href: "/contact",
},
{
label: "Gallery", href: "/gallery"},
label: "Gallery",
href: "/gallery",
},
],
},
]}
@@ -104,4 +135,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}