Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-08 14:00:53 +00:00

View File

@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -22,112 +22,69 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="MN Handyman"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="MN Handyman"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyNine
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Our Services"
description="Comprehensive property care."
features={[
{
title: "General Repair",
description: "Everything around the house.",
imageSrc: "http://img.b2bpic.net/free-photo/monochrome-portrait-retro-man-doing-housework-household-chores_23-2151448509.jpg?_wi=6",
titleIconSrc: "Tool",
},
{
title: "Home Upgrades",
description: "Improving your living space.",
imageSrc: "http://img.b2bpic.net/free-photo/female-construction-worker-with-helmet-paint-roller_23-2148813403.jpg?_wi=5",
titleIconSrc: "Star",
},
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyNine
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Our Services"
description="Comprehensive property care."
features={[
{
title: "General Repair", description: "Everything around the house.", imageSrc: "http://img.b2bpic.net/free-photo/monochrome-portrait-retro-man-doing-housework-household-chores_23-2151448509.jpg", titleIconSrc: "Tool", buttonText: "View Details"
},
{
title: "Home Upgrades", description: "Improving your living space.", imageSrc: "http://img.b2bpic.net/free-photo/female-construction-worker-with-helmet-paint-roller_23-2148813403.jpg", titleIconSrc: "Star", buttonText: "View Details"
},
]}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="Why Choose Us"
description={[
"Reliable, professional, and friendly service.",
"We guarantee all work carried out.",
]}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="Why Choose Us"
description={[
"Reliable, professional, and friendly service.", "We guarantee all work carried out."]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "MN Handyman",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Reviews",
href: "/reviews",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Services",
items: [
{
label: "Plumbing",
href: "/services",
},
{
label: "Painting",
href: "/services",
},
{
label: "Flooring",
href: "/services",
},
],
},
]}
bottomLeftText="© 2024 MN Handyman Services"
bottomRightText="Birmingham & 40-mile radius"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "MN Handyman", items: [
{ label: "About Us", href: "/about" },
{ label: "Reviews", href: "/reviews" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services", items: [
{ label: "Plumbing", href: "/services" },
{ label: "Painting", href: "/services" },
{ label: "Flooring", href: "/services" },
],
},
]}
bottomLeftText="© 2024 MN Handyman Services"
bottomRightText="Birmingham & 40-mile radius"
/>
</div>
</ReactLenis>
</ThemeProvider>
);