Update src/app/services/page.tsx

This commit is contained in:
2026-04-02 13:32:10 +00:00
parent 13133fcb15
commit 2b8bc0c81e

View File

@@ -7,7 +7,7 @@ import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwe
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="The Tree Business"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
@@ -55,20 +44,8 @@ export default function LandingPage() {
title="Our Professional Services"
description="Comprehensive tree care solutions tailored to your garden."
features={[
{
id: "s1",
title: "Tree Surgery",
description: "Expert pruning and felling services.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-charming-young-woman-terrace_329181-11565.jpg?_wi=3",
imageAlt: "woman smiling portrait outside home",
},
{
id: "s2",
title: "Hedge Care",
description: "Professional hedge trimming and shaping.",
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-living-without-care_23-2149868480.jpg?_wi=3",
imageAlt: "portrait of happy customer outdoor",
},
{ id: "s1", title: "Tree Surgery", description: "Expert pruning and felling services.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-charming-young-woman-terrace_329181-11565.jpg", imageAlt: "woman smiling portrait outside home" },
{ id: "s2", title: "Hedge Care", description: "Professional hedge trimming and shaping.", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-living-without-care_23-2149868480.jpg", imageAlt: "portrait of happy customer outdoor" },
]}
/>
</div>
@@ -79,19 +56,12 @@ export default function LandingPage() {
useInvertedBackground={false}
title="How We Work"
description="Everything you need to know about our process."
imageSrc="http://img.b2bpic.net/free-photo/field-full-trees-with-no-leaves-green-grass-spring_181624-19618.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/field-full-trees-with-no-leaves-green-grass-spring_181624-19618.jpg"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
faqs={[
{
id: "f1",
title: "How do you handle debris?",
content: "We chip all waste on-site and ensure your garden is left pristine.",
},
{
id: "f2",
title: "Do you need access?",
content: "We discuss all access requirements during your free survey.",
},
{ id: "f1", title: "How do you handle debris?", content: "We chip all waste on-site and ensure your garden is left pristine." },
{ id: "f2", title: "Do you need access?", content: "We discuss all access requirements during your free survey." },
]}
/>
</div>