Update src/app/services/page.tsx

This commit is contained in:
2026-03-26 16:32:43 +00:00
parent e094c4f11b
commit 55deed445d

View File

@@ -2,138 +2,66 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqBase from '@/components/sections/faq/FaqBase';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Walden Ridge"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="Walden Ridge"
/>
</div>
<div id="services-hero" data-section="services-hero">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Expert Small Engine Maintenance & Repair"
description="At Walden Ridge Service Station, we specialize in keeping your outdoor power equipment running at peak performance. From routine tune-ups to major engine overhauls, our certified technicians ensure your tools are ready for the job."
bulletPoints={[
{
title: "Lawn Mower Service",
description: "Complete diagnostic, blade sharpening, and oil changes for all walk-behind and riding mowers.",
},
{
title: "Chainsaw Sharpening & Repair",
description: "Chain sharpening, bar maintenance, and engine tuning for both electric and gas-powered chainsaws.",
},
{
title: "Trimmer & Blower Care",
description: "Carburetor cleaning, fuel line replacement, and spark plug services for string trimmers and leaf blowers.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/detail-precision-tools_1359-246.jpg?_wi=2"
imageAlt="professional small engine service shop"
/>
</div>
<div id="services-hero" data-section="services-hero">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Expert Small Engine Maintenance & Repair"
description="At Walden Ridge Service Station, we specialize in keeping your outdoor power equipment running at peak performance. From routine tune-ups to major engine overhauls, our certified technicians ensure your tools are ready for the job."
bulletPoints={[
{
title: "Lawn Mower Service", description: "Complete diagnostic, blade sharpening, and oil changes for all walk-behind and riding mowers."},
{
title: "Chainsaw Sharpening & Repair", description: "Chain sharpening, bar maintenance, and engine tuning for both electric and gas-powered chainsaws."},
{
title: "Trimmer & Blower Care", description: "Carburetor cleaning, fuel line replacement, and spark plug services for string trimmers and leaf blowers."},
]}
imageSrc="http://img.b2bpic.net/free-photo/detail-precision-tools_1359-246.jpg"
imageAlt="professional small engine service shop"
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "What is your turnaround time?",
content: "Standard maintenance services are typically completed within 3-5 business days, depending on part availability.",
},
{
id: "2",
title: "Do you provide pickup services?",
content: "Yes, for riding lawn mowers and heavy equipment, we offer pickup and delivery services on Signal Mountain.",
},
{
id: "3",
title: "Are your repairs warrantied?",
content: "All labor performed by our team comes with a 30-day service guarantee.",
},
]}
title="Frequently Asked Questions"
description="Everything you need to know about our repair process and services."
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services",
items: [
{
label: "Lawn Mower Repair",
href: "#",
},
{
label: "Chainsaw Service",
href: "#",
},
{
label: "Trimmer Repair",
href: "#",
},
],
},
{
title: "Support",
items: [
{
label: "Contact Us",
href: "#",
},
{
label: "Book Service",
href: "#",
},
{
label: "FAQs",
href: "#",
},
],
},
]}
logoText="Walden Ridge Service Station"
copyrightText="© 2025 | Signal Mountains Most Trusted Small Engine Repair"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Walden Ridge"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Lawn Mowers", href: "/services" }, { label: "Chainsaws", href: "/services" }, { label: "Blowers", href: "/services" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}