Update src/app/services/page.tsx

This commit is contained in:
2026-04-05 10:45:52 +00:00
parent 440591deb8
commit 5fbd88a369

View File

@@ -2,12 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -22,93 +21,42 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Community Hub",
id: "/community",
},
{
name: "About",
id: "/about",
},
]}
brandName="Manx Growers Network"
button={{
text: "Join the Community",
href: "/community",
}}
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Community Hub", id: "/community" },
{ name: "About", id: "/about" },
]}
brandName="Manx Growers Network"
button={{ text: "Join the Community", href: "/community" }}
/>
</div>
<div id="services-list" data-section="services-list">
<FeatureCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
features={[
{
title: "Get Started Growing",
description: "Vegetable patches, raised beds, polytunnels, and greenhouse work.",
imageSrc: "http://img.b2bpic.net/free-photo/flower-sprouts-before-planting-ground-pots-plastic-boxes-selective-focus-leaves-hello-spring-beginning-seasonal-spring-work-earth_166373-3535.jpg?_wi=2",
},
{
title: "Professional Landscaping",
description: "Transform your outdoor landscape effectively.",
imageSrc: "http://img.b2bpic.net/free-photo/incognito-man-cutting-overgrown-bushes_651396-1551.jpg?_wi=2",
},
{
title: "General Maintenance",
description: "Ongoing upkeep for a healthy garden year-round.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-working-garden-growing-plants-pots-cutting-branches-with-pruner-gardening-job-concept_74855-12893.jpg?_wi=2",
},
]}
title="Comprehensive Growing Services"
description="From raised beds to general gardening, we help you manage your space."
/>
</div>
<div className="pt-32 pb-16">
<FeatureCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
features={[
{ title: "Raised Beds", description: "High-quality timber raised beds installed.", imageSrc: "http://img.b2bpic.net/free-photo/flower-sprouts-before-planting-ground-pots-plastic-boxes-selective-focus-leaves-hello-spring-beginning-seasonal-spring-work-earth_166373-3535.jpg?_wi=1" },
{ title: "Polytunnels", description: "Seasonal polytunnel setup and maintenance.", imageSrc: "http://img.b2bpic.net/free-photo/incognito-man-cutting-overgrown-bushes_651396-1551.jpg?_wi=1" },
{ title: "General Maintenance", description: "Regular garden care, weeding, and advice.", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-working-garden-growing-plants-pots-cutting-branches-with-pruner-gardening-job-concept_74855-12893.jpg?_wi=1" },
]}
title="Our Services"
description="Detailed list of professional gardening services available to help your garden thrive."
/>
</div>
<div id="booking-form" data-section="booking-form">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "plain",
}}
tag="Booking Request"
title="Book Your Free Quote"
description="Ready to transform your growing space? Tell us about your project and we'll reach out to schedule your quote."
buttons={[
{
text: "Submit Enquiry",
href: "#",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Manx Growers Network"
leftLink={{
text: "Services",
href: "/services",
}}
rightLink={{
text: "Community",
href: "/community",
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Manx Growers Network"
leftLink={{ text: "Services", href: "/services" }}
rightLink={{ text: "Community", href: "/community" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);