From 5f1ba86168b87f98bd032881c240dc123a9bc31a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:42:42 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 45 +++++++++--------------------------------- 1 file changed, 9 insertions(+), 36 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1eab83e..5022378 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -44,10 +44,7 @@ export default function AboutPage() { heading={[ { type: "text", content: "Elevating outdoor living with" }, { - type: "image", - src: "http://img.b2bpic.net/free-vector/elegant-labels-design_1198-63.jpg", - alt: "Luxury landscape emblem", - }, + type: "image", src: "http://img.b2bpic.net/free-vector/elegant-labels-design_1198-63.jpg", alt: "Luxury landscape emblem"}, { type: "text", content: "expertise and artistry" }, ]} buttons={[ @@ -63,33 +60,13 @@ export default function AboutPage() { Date: Tue, 3 Mar 2026 11:42:45 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 316ac62..fcb5c86 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -42,10 +42,7 @@ export default function ContactPage() { heading={[ { type: "text", content: "Ready to transform your" }, { - type: "image", - src: "http://img.b2bpic.net/free-vector/elegant-labels-design_1198-63.jpg", - alt: "Luxury landscape emblem", - }, + type: "image", src: "http://img.b2bpic.net/free-vector/elegant-labels-design_1198-63.jpg", alt: "Luxury landscape emblem"}, { type: "text", content: "outdoor space?" }, ]} buttons={[ @@ -157,8 +154,7 @@ export default function ContactPage() { logoText="Luxe Landscapes" columns={[ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Garden Design", href: "/services" }, { label: "Hardscaping", href: "/services" }, { label: "Water Features", href: "/services" }, @@ -166,8 +162,7 @@ export default function ContactPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/about" }, { label: "Portfolio", href: "/portfolio" }, @@ -175,8 +170,7 @@ export default function ContactPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Design Guide", href: "#" }, { label: "Maintenance Tips", href: "#" }, { label: "Plant Selection", href: "#" }, @@ -184,8 +178,7 @@ export default function ContactPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Contact", href: "/contact" }, { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }, -- 2.49.1 From 3e04f04e515dba02830fc6bb465dd46009ced146 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:42:46 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 29 +++++++---------------------- 1 file changed, 7 insertions(+), 22 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b8014ab..c2285f6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,44 +6,29 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Luxury Landscaping Design & Installation | Luxe Landscapes", - description: "Award-winning luxury landscaping services. Custom garden design, hardscaping, water features & maintenance for discerning homeowners. Get your free consultation today.", - keywords: "luxury landscaping, landscape design, garden architecture, outdoor living, premium landscaping, landscape installation", - metadataBase: new URL("https://luxelandscapes.com"), + title: "Premium Luxury Landscaping Design & Installation | Luxe Landscapes", description: "Award-winning luxury landscaping services. Custom garden design, hardscaping, water features & maintenance for discerning homeowners. Get your free consultation today.", keywords: "luxury landscaping, landscape design, garden architecture, outdoor living, premium landscaping, landscape installation", metadataBase: new URL("https://luxelandscapes.com"), alternates: { - canonical: "https://luxelandscapes.com", - }, + canonical: "https://luxelandscapes.com"}, robots: { index: true, follow: true, }, openGraph: { - title: "Luxe Landscapes - Premium Outdoor Design", - description: "Transform your outdoor space into a luxury sanctuary. Award-winning landscape design and installation.", - siteName: "Luxe Landscapes", - type: "website", - images: [ + title: "Luxe Landscapes - Premium Outdoor Design", description: "Transform your outdoor space into a luxury sanctuary. Award-winning landscape design and installation.", siteName: "Luxe Landscapes", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg", - alt: "Luxury landscape design", - }, + url: "http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg", alt: "Luxury landscape design"}, ], }, twitter: { - card: "summary_large_image", - title: "Luxe Landscapes - Premium Landscaping", - description: "Custom landscape design for luxury properties", - images: ["http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg"], + card: "summary_large_image", title: "Luxe Landscapes - Premium Landscaping", description: "Custom landscape design for luxury properties", images: ["http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg"], }, }; -- 2.49.1 From feb6ef8a516a330fdd24125afab587c56185e9cc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:42:48 +0000 Subject: [PATCH 4/6] Update src/app/page.tsx --- src/app/page.tsx | 167 ++++++++++++++++++----------------------------- 1 file changed, 64 insertions(+), 103 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cc008d0..2e00e7e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,10 @@ import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSp import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; import TeamCardSix from "@/components/sections/team/TeamCardSix"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Sparkles, Leaf, Users } from "lucide-react"; +import { Sparkles, Leaf, Users, DollarSign } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -63,10 +64,7 @@ export default function HomePage() { heading={[ { type: "text", content: "Elevating outdoor living with" }, { - type: "image", - src: "http://img.b2bpic.net/free-vector/elegant-labels-design_1198-63.jpg", - alt: "Luxury landscape emblem", - }, + type: "image", src: "http://img.b2bpic.net/free-vector/elegant-labels-design_1198-63.jpg", alt: "Luxury landscape emblem"}, { type: "text", content: "expertise and artistry" }, ]} buttons={[ @@ -87,35 +85,14 @@ export default function HomePage() { tagAnimation="slide-up" products={[ { - id: "1", - brand: "Luxury Estates", - name: "Contemporary Garden Oasis", - price: "Premium", - rating: 5, - reviewCount: "847", - imageSrc: "http://img.b2bpic.net/free-photo/fountain-park-pedralbes-royal-palace_1398-4394.jpg?_wi=1", - imageAlt: "Contemporary garden with water features", - }, + id: "1", brand: "Luxury Estates", name: "Contemporary Garden Oasis", price: "Premium", rating: 5, + reviewCount: "847", imageSrc: "http://img.b2bpic.net/free-photo/fountain-park-pedralbes-royal-palace_1398-4394.jpg", imageAlt: "Contemporary garden with water features"}, { - id: "2", - brand: "Resort Properties", - name: "Tropical Paradise Retreat", - price: "Bespoke", - rating: 5, - reviewCount: "623", - imageSrc: "http://img.b2bpic.net/free-photo/san-diego-dawn-early-morning-with-palm-tree-silhouette_649448-2514.jpg?_wi=1", - imageAlt: "Tropical resort landscape design", - }, + id: "2", brand: "Resort Properties", name: "Tropical Paradise Retreat", price: "Bespoke", rating: 5, + reviewCount: "623", imageSrc: "http://img.b2bpic.net/free-photo/san-diego-dawn-early-morning-with-palm-tree-silhouette_649448-2514.jpg", imageAlt: "Tropical resort landscape design"}, { - id: "3", - brand: "Hillside Residences", - name: "Terraced Mountain Vista", - price: "Elite", - rating: 5, - reviewCount: "512", - imageSrc: "http://img.b2bpic.net/free-photo/chinese-garden-n-zurich_1112-1143.jpg?_wi=1", - imageAlt: "Terraced mountain landscape", - }, + id: "3", brand: "Hillside Residences", name: "Terraced Mountain Vista", price: "Elite", rating: 5, + reviewCount: "512", imageSrc: "http://img.b2bpic.net/free-photo/chinese-garden-n-zurich_1112-1143.jpg", imageAlt: "Terraced mountain landscape"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -135,31 +112,19 @@ export default function HomePage() { tagAnimation="slide-up" accordionItems={[ { - id: "1", - title: "Custom Garden Design", - content: - "Bespoke garden layouts that reflect your personal style. From intimate cottage gardens to expansive formal designs, we create outdoor spaces that complement your home's architecture and enhance your lifestyle.", - }, + id: "1", title: "Custom Garden Design", content: + "Bespoke garden layouts that reflect your personal style. From intimate cottage gardens to expansive formal designs, we create outdoor spaces that complement your home's architecture and enhance your lifestyle."}, { - id: "2", - title: "Hardscape Installation", - content: - "Professional installation of patios, pathways, pergolas, and outdoor structures. Premium materials and expert craftsmanship ensure durability and aesthetic excellence.", - }, + id: "2", title: "Hardscape Installation", content: + "Professional installation of patios, pathways, pergolas, and outdoor structures. Premium materials and expert craftsmanship ensure durability and aesthetic excellence."}, { - id: "3", - title: "Water Features & Pools", - content: - "Custom water features, fountains, and pool landscaping. Transform your outdoor space with stunning aquatic elements that enhance ambiance and property value.", - }, + id: "3", title: "Water Features & Pools", content: + "Custom water features, fountains, and pool landscaping. Transform your outdoor space with stunning aquatic elements that enhance ambiance and property value."}, { - id: "4", - title: "Landscape Maintenance", - content: - "Ongoing maintenance programs designed to keep your landscape pristine. Regular seasonal care, pruning, and updates ensure your investment remains beautiful year-round.", - }, + id: "4", title: "Landscape Maintenance", content: + "Ongoing maintenance programs designed to keep your landscape pristine. Regular seasonal care, pruning, and updates ensure your investment remains beautiful year-round."}, ]} - imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-working-eco-friendly-wind-power-project-with-paper-plans_23-2148847792.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-working-eco-friendly-wind-power-project-with-paper-plans_23-2148847792.jpg" imageAlt="Professional landscape design workspace" mediaAnimation="slide-up" mediaPosition="right" @@ -169,6 +134,38 @@ export default function HomePage() { /> +
+ +
+
Date: Tue, 3 Mar 2026 11:42:49 +0000 Subject: [PATCH 5/6] Update src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 69 +++++++++----------------------------- 1 file changed, 16 insertions(+), 53 deletions(-) diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 79b6f27..8a717a2 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -48,35 +48,14 @@ export default function PortfolioPage() { tagAnimation="slide-up" products={[ { - id: "1", - brand: "Luxury Estates", - name: "Contemporary Garden Oasis", - price: "Premium", - rating: 5, - reviewCount: "847", - imageSrc: "http://img.b2bpic.net/free-photo/fountain-park-pedralbes-royal-palace_1398-4394.jpg?_wi=2", - imageAlt: "Contemporary garden with water features", - }, + id: "1", brand: "Luxury Estates", name: "Contemporary Garden Oasis", price: "Premium", rating: 5, + reviewCount: "847", imageSrc: "http://img.b2bpic.net/free-photo/fountain-park-pedralbes-royal-palace_1398-4394.jpg", imageAlt: "Contemporary garden with water features"}, { - id: "2", - brand: "Resort Properties", - name: "Tropical Paradise Retreat", - price: "Bespoke", - rating: 5, - reviewCount: "623", - imageSrc: "http://img.b2bpic.net/free-photo/san-diego-dawn-early-morning-with-palm-tree-silhouette_649448-2514.jpg?_wi=2", - imageAlt: "Tropical resort landscape design", - }, + id: "2", brand: "Resort Properties", name: "Tropical Paradise Retreat", price: "Bespoke", rating: 5, + reviewCount: "623", imageSrc: "http://img.b2bpic.net/free-photo/san-diego-dawn-early-morning-with-palm-tree-silhouette_649448-2514.jpg", imageAlt: "Tropical resort landscape design"}, { - id: "3", - brand: "Hillside Residences", - name: "Terraced Mountain Vista", - price: "Elite", - rating: 5, - reviewCount: "512", - imageSrc: "http://img.b2bpic.net/free-photo/chinese-garden-n-zurich_1112-1143.jpg?_wi=2", - imageAlt: "Terraced mountain landscape", - }, + id: "3", brand: "Hillside Residences", name: "Terraced Mountain Vista", price: "Elite", rating: 5, + reviewCount: "512", imageSrc: "http://img.b2bpic.net/free-photo/chinese-garden-n-zurich_1112-1143.jpg", imageAlt: "Terraced mountain landscape"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -94,29 +73,17 @@ export default function PortfolioPage() { author="Margaret & David Sterling, Estate Owners" avatars={[ { - src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", - alt: "Margaret Sterling", - }, + src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", alt: "Margaret Sterling"}, { - src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", - alt: "David Sterling", - }, + src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "David Sterling"}, { - src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", - alt: "Landscape client 1", - }, + src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Landscape client 1"}, { - src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", - alt: "Landscape client 2", - }, + src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Landscape client 2"}, { - src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", - alt: "Landscape client 3", - }, + src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Landscape client 3"}, { - src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", - alt: "Landscape client 4", - }, + src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Landscape client 4"}, ]} ratingAnimation="slide-up" avatarsAnimation="blur-reveal" @@ -129,8 +96,7 @@ export default function PortfolioPage() { logoText="Luxe Landscapes" columns={[ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Garden Design", href: "/services" }, { label: "Hardscaping", href: "/services" }, { label: "Water Features", href: "/services" }, @@ -138,8 +104,7 @@ export default function PortfolioPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/about" }, { label: "Portfolio", href: "/portfolio" }, @@ -147,8 +112,7 @@ export default function PortfolioPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Design Guide", href: "#" }, { label: "Maintenance Tips", href: "#" }, { label: "Plant Selection", href: "#" }, @@ -156,8 +120,7 @@ export default function PortfolioPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Contact", href: "/contact" }, { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }, -- 2.49.1 From 2a6def3dc87e0f5481a3d34c5bcb9e2f753327c8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:42:50 +0000 Subject: [PATCH 6/6] Update src/app/services/page.tsx --- src/app/services/page.tsx | 84 +++++++++------------------------------ 1 file changed, 19 insertions(+), 65 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 4f2c777..9e1b764 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -48,31 +48,19 @@ export default function ServicesPage() { tagAnimation="slide-up" accordionItems={[ { - id: "1", - title: "Custom Garden Design", - content: - "Bespoke garden layouts that reflect your personal style. From intimate cottage gardens to expansive formal designs, we create outdoor spaces that complement your home's architecture and enhance your lifestyle.", - }, + id: "1", title: "Custom Garden Design", content: + "Bespoke garden layouts that reflect your personal style. From intimate cottage gardens to expansive formal designs, we create outdoor spaces that complement your home's architecture and enhance your lifestyle."}, { - id: "2", - title: "Hardscape Installation", - content: - "Professional installation of patios, pathways, pergolas, and outdoor structures. Premium materials and expert craftsmanship ensure durability and aesthetic excellence.", - }, + id: "2", title: "Hardscape Installation", content: + "Professional installation of patios, pathways, pergolas, and outdoor structures. Premium materials and expert craftsmanship ensure durability and aesthetic excellence."}, { - id: "3", - title: "Water Features & Pools", - content: - "Custom water features, fountains, and pool landscaping. Transform your outdoor space with stunning aquatic elements that enhance ambiance and property value.", - }, + id: "3", title: "Water Features & Pools", content: + "Custom water features, fountains, and pool landscaping. Transform your outdoor space with stunning aquatic elements that enhance ambiance and property value."}, { - id: "4", - title: "Landscape Maintenance", - content: - "Ongoing maintenance programs designed to keep your landscape pristine. Regular seasonal care, pruning, and updates ensure your investment remains beautiful year-round.", - }, + id: "4", title: "Landscape Maintenance", content: + "Ongoing maintenance programs designed to keep your landscape pristine. Regular seasonal care, pruning, and updates ensure your investment remains beautiful year-round."}, ]} - imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-working-eco-friendly-wind-power-project-with-paper-plans_23-2148847792.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-working-eco-friendly-wind-power-project-with-paper-plans_23-2148847792.jpg" imageAlt="Professional landscape design workspace" mediaAnimation="slide-up" mediaPosition="right" @@ -91,49 +79,19 @@ export default function ServicesPage() { tagAnimation="slide-up" plans={[ { - id: "design", - title: "Design Consultation", - price: "$2,500", - period: "per project", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-business-team-working_23-2149153848.jpg", - imageAlt: "Landscape design consultation", - button: { text: "Book Consultation", href: "/contact" }, + id: "design", title: "Design Consultation", price: "$2,500", period: "per project", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-business-team-working_23-2149153848.jpg", imageAlt: "Landscape design consultation", button: { text: "Book Consultation", href: "/contact" }, features: [ - "Initial site assessment", - "3D design renderings", - "Material recommendations", - "Maintenance planning", - ], + "Initial site assessment", "3D design renderings", "Material recommendations", "Maintenance planning"], }, { - id: "installation", - title: "Full Installation", - price: "$25,000+", - period: "starting price", - imageSrc: "http://img.b2bpic.net/free-photo/skilful-male-landscaper-using-high-altitude-hedge-trimmer-topiary-park-side-view-focused_7502-10164.jpg", - imageAlt: "Professional landscape installation", - button: { text: "Get Free Estimate", href: "/contact" }, + id: "installation", title: "Full Installation", price: "$25,000+", period: "starting price", imageSrc: "http://img.b2bpic.net/free-photo/skilful-male-landscaper-using-high-altitude-hedge-trimmer-topiary-park-side-view-focused_7502-10164.jpg", imageAlt: "Professional landscape installation", button: { text: "Get Free Estimate", href: "/contact" }, features: [ - "Design + installation", - "Premium materials", - "Professional crew", - "Project management", - ], + "Design + installation", "Premium materials", "Professional crew", "Project management"], }, { - id: "premium", - title: "Premium Estate Package", - price: "Custom", - period: "luxury bespoke", - imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg", - imageAlt: "Luxury estate landscape", - button: { text: "Schedule Private Meeting", href: "/contact" }, + id: "premium", title: "Premium Estate Package", price: "Custom", period: "luxury bespoke", imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg", imageAlt: "Luxury estate landscape", button: { text: "Schedule Private Meeting", href: "/contact" }, features: [ - "Unlimited revisions", - "Exclusive materials", - "Dedicated project team", - "Lifetime support", - ], + "Unlimited revisions", "Exclusive materials", "Dedicated project team", "Lifetime support"], }, ]} animationType="slide-up" @@ -149,8 +107,7 @@ export default function ServicesPage() { logoText="Luxe Landscapes" columns={[ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Garden Design", href: "/services" }, { label: "Hardscaping", href: "/services" }, { label: "Water Features", href: "/services" }, @@ -158,8 +115,7 @@ export default function ServicesPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/about" }, { label: "Portfolio", href: "/portfolio" }, @@ -167,8 +123,7 @@ export default function ServicesPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Design Guide", href: "#" }, { label: "Maintenance Tips", href: "#" }, { label: "Plant Selection", href: "#" }, @@ -176,8 +131,7 @@ export default function ServicesPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Contact", href: "/contact" }, { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }, -- 2.49.1