Update src/app/page.tsx
This commit is contained in:
302
src/app/page.tsx
302
src/app/page.tsx
@@ -13,7 +13,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import { CalendarCheck, DollarSign, Gauge, LeafyGreen, MapPin, Smile, Sparkles, Star, ThumbsUp } from "lucide-react";
|
||||
import { CalendarCheck, DollarSign, Gauge, LeafyGreen, MapPin, Smile, Sparkles, Star, ThumbsUp, Sprout, Seedling, Broom } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -34,29 +34,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About Us", id: "#about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Team",
|
||||
id: "#team",
|
||||
},
|
||||
name: "Team", id: "#team"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Parker's Landscaping LLC"
|
||||
/>
|
||||
@@ -65,69 +53,44 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Transform Your Outdoor Space with Parker's Landscaping LLC"
|
||||
description="Parker's Landscaping LLC delivers exceptional landscaping services, from meticulous lawn care to stunning garden designs. Experience reliability, fair pricing, and beautiful results."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-holding-plant-white-pot_23-2148509898.jpg",
|
||||
alt: "Happy Homeowner",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-holding-plant-white-pot_23-2148509898.jpg", alt: "Happy Homeowner"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/expressive-man-is-posing-city_344912-1497.jpg",
|
||||
alt: "Parker, Lead Landscaper",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/expressive-man-is-posing-city_344912-1497.jpg", alt: "Parker, Lead Landscaper"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/women-working-greenhouse-with-flowerpots_1157-30889.jpg",
|
||||
alt: "Satisfied Client",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/women-working-greenhouse-with-flowerpots_1157-30889.jpg", alt: "Satisfied Client"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-senior-couple-with-water-hose_23-2148256621.jpg",
|
||||
alt: "Another Happy Customer",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-senior-couple-with-water-hose_23-2148256621.jpg", alt: "Another Happy Customer"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pretty-woman-cute-clothes-reaching-plants-greenhouse_197531-12328.jpg",
|
||||
alt: "Pretty woman in cute clothes reaching for plants in greenhouse",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/pretty-woman-cute-clothes-reaching-plants-greenhouse_197531-12328.jpg", alt: "Pretty woman in cute clothes reaching for plants in greenhouse"},
|
||||
]}
|
||||
avatarText="Trusted by 100+ satisfied clients"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Estimate",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get a Free Estimate", href: "#contact"},
|
||||
{
|
||||
text: "Explore Our Services",
|
||||
href: "#services",
|
||||
},
|
||||
text: "Explore Our Services", href: "#services"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Reliable Service",
|
||||
icon: CalendarCheck,
|
||||
type: "text-icon", text: "Reliable Service", icon: CalendarCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fair Pricing",
|
||||
icon: DollarSign,
|
||||
type: "text-icon", text: "Fair Pricing", icon: DollarSign,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Beautiful Results",
|
||||
icon: Sparkles,
|
||||
type: "text-icon", text: "Beautiful Results", icon: Sparkles,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Local Experts",
|
||||
icon: MapPin,
|
||||
type: "text-icon", text: "Local Experts", icon: MapPin,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Customer Satisfaction",
|
||||
icon: ThumbsUp,
|
||||
type: "text-icon", text: "Customer Satisfaction", icon: ThumbsUp,
|
||||
},
|
||||
]}
|
||||
marqueeSpeed={40}
|
||||
@@ -140,16 +103,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "About Parker's Landscaping LLC",
|
||||
},
|
||||
type: "text", content: "About Parker's Landscaping LLC"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
},
|
||||
text: "Learn More"},
|
||||
]}
|
||||
description="Founded on a passion for pristine outdoor spaces and a commitment to hard work, Parker's Landscaping LLC provides top-tier landscaping services in Hamilton Township. We pride ourselves on reliability, fair pricing, and bringing every project to life, ensuring your vision for a beautiful yard becomes a reality. Our dedicated team, led by Parker, transforms ordinary spaces into extraordinary landscapes."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-mature-bearded-caucasian-man-blue-t-shirt-planting-flowers-pot-with-garden-tools-spending-peaceful-morning-garden-hear-house_176420-19927.jpg"
|
||||
imageAlt="Landscaper working in a garden"
|
||||
/>
|
||||
@@ -161,32 +120,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Weeding & Bed Maintenance",
|
||||
description: "Meticulous weeding and care for your garden beds, ensuring they remain vibrant and free from unwanted growth.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-putting-gloves_23-2147714836.jpg",
|
||||
imageAlt: "Weeding a garden bed",
|
||||
buttonIcon: "LeafyGreen",
|
||||
title: "Weeding & Bed Maintenance", description: "Meticulous weeding and care for your garden beds, ensuring they remain vibrant and free from unwanted growth.", imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-putting-gloves_23-2147714836.jpg", imageAlt: "Weeding a garden bed", buttonIcon: LeafyGreen,
|
||||
},
|
||||
{
|
||||
title: "Mulching & Soil Enrichment",
|
||||
description: "Enhance soil health, retain moisture, and improve the aesthetic appeal of your landscape with premium mulching.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-planting-tree-countryside_23-2149401180.jpg",
|
||||
imageAlt: "Mulch being spread in a garden",
|
||||
buttonIcon: "Sprout",
|
||||
title: "Mulching & Soil Enrichment", description: "Enhance soil health, retain moisture, and improve the aesthetic appeal of your landscape with premium mulching.", imageSrc: "http://img.b2bpic.net/free-photo/person-planting-tree-countryside_23-2149401180.jpg", imageAlt: "Mulch being spread in a garden", buttonIcon: Sprout,
|
||||
},
|
||||
{
|
||||
title: "Grass Seeding & Lawn Renovation",
|
||||
description: "Restore patchy lawns or establish new, lush green turf with our expert grass seeding and lawn renovation techniques.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-hand-trowel-green-grass_181624-26501.jpg",
|
||||
imageAlt: "Grass seeding a new lawn",
|
||||
buttonIcon: "Seedling",
|
||||
title: "Grass Seeding & Lawn Renovation", description: "Restore patchy lawns or establish new, lush green turf with our expert grass seeding and lawn renovation techniques.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-hand-trowel-green-grass_181624-26501.jpg", imageAlt: "Grass seeding a new lawn", buttonIcon: Seedling,
|
||||
},
|
||||
{
|
||||
title: "Seasonal Cleanup",
|
||||
description: "Comprehensive spring and fall cleanups to prepare your yard for the changing seasons, including leaf removal and debris clearing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-operating-heavy-duty-leaf-blower_1153-7323.jpg",
|
||||
imageAlt: "Seasonal garden cleanup",
|
||||
buttonIcon: "Broom",
|
||||
title: "Seasonal Cleanup", description: "Comprehensive spring and fall cleanups to prepare your yard for the changing seasons, including leaf removal and debris clearing.", imageSrc: "http://img.b2bpic.net/free-photo/people-operating-heavy-duty-leaf-blower_1153-7323.jpg", imageAlt: "Seasonal garden cleanup", buttonIcon: Broom,
|
||||
},
|
||||
]}
|
||||
title="Our Professional Landscaping Services"
|
||||
@@ -201,29 +144,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: LeafyGreen,
|
||||
title: "Years of Experience",
|
||||
value: "5+",
|
||||
},
|
||||
id: "m1", icon: LeafyGreen,
|
||||
title: "Years of Experience", value: "5+"},
|
||||
{
|
||||
id: "m2",
|
||||
icon: Gauge,
|
||||
title: "Projects Completed",
|
||||
value: "150+",
|
||||
},
|
||||
id: "m2", icon: Gauge,
|
||||
title: "Projects Completed", value: "150+"},
|
||||
{
|
||||
id: "m3",
|
||||
icon: Smile,
|
||||
title: "Happy Clients",
|
||||
value: "100+",
|
||||
},
|
||||
id: "m3", icon: Smile,
|
||||
title: "Happy Clients", value: "100+"},
|
||||
{
|
||||
id: "m4",
|
||||
icon: Star,
|
||||
title: "Average Rating",
|
||||
value: "4.5",
|
||||
},
|
||||
id: "m4", icon: Star,
|
||||
title: "Average Rating", value: "4.5"},
|
||||
]}
|
||||
title="Our Commitment to Excellence"
|
||||
description="Dedicated to delivering outstanding results, we measure our success by your satisfaction and the beauty we cultivate in every project."
|
||||
@@ -237,36 +168,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
groups={[
|
||||
{
|
||||
id: "g1",
|
||||
groupTitle: "Our Dedicated Team",
|
||||
members: [
|
||||
id: "g1", groupTitle: "Our Dedicated Team", members: [
|
||||
{
|
||||
id: "t1",
|
||||
title: "Parker, Founder & Lead Landscaper",
|
||||
subtitle: "Dedicated to Transforming Your Yard",
|
||||
detail: "Parker started this company with a strong work ethic and a passion for landscaping. He personally oversees projects, ensuring every detail meets his high standards and client expectations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-flower-pot_23-2149098272.jpg",
|
||||
imageAlt: "Portrait of Parker",
|
||||
},
|
||||
id: "t1", title: "Parker, Founder & Lead Landscaper", subtitle: "Dedicated to Transforming Your Yard", detail: "Parker started this company with a strong work ethic and a passion for landscaping. He personally oversees projects, ensuring every detail meets his high standards and client expectations.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-flower-pot_23-2149098272.jpg", imageAlt: "Portrait of Parker"},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Maria, Garden Specialist",
|
||||
subtitle: "Expert in Plant Health & Design",
|
||||
detail: "Maria brings her extensive knowledge of horticulture to every garden, specializing in plant selection, health, and creating stunning floral displays that thrive.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man-pointing-camera_1262-3266.jpg",
|
||||
imageAlt: "Portrait of Maria",
|
||||
},
|
||||
id: "t2", title: "Maria, Garden Specialist", subtitle: "Expert in Plant Health & Design", detail: "Maria brings her extensive knowledge of horticulture to every garden, specializing in plant selection, health, and creating stunning floral displays that thrive.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man-pointing-camera_1262-3266.jpg", imageAlt: "Portrait of Maria"},
|
||||
{
|
||||
id: "t3",
|
||||
title: "David, Operations Manager",
|
||||
subtitle: "Ensuring Smooth Project Execution",
|
||||
detail: "David manages our daily operations, ensuring all projects are completed efficiently, on time, and to the highest quality, from scheduling to site management.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/never-ending-happiness-our-new-home_329181-9763.jpg",
|
||||
imageAlt: "Portrait of David",
|
||||
},
|
||||
id: "t3", title: "David, Operations Manager", subtitle: "Ensuring Smooth Project Execution", detail: "David manages our daily operations, ensuring all projects are completed efficiently, on time, and to the highest quality, from scheduling to site management.", imageSrc: "http://img.b2bpic.net/free-photo/never-ending-happiness-our-new-home_329181-9763.jpg", imageAlt: "Portrait of David"},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-plant-white-pot_23-2148509898.jpg",
|
||||
imageAlt: "young man smiling outdoors portrait",
|
||||
},
|
||||
]}
|
||||
title="Meet the Vision Behind the Greens"
|
||||
@@ -282,50 +191,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "tst1",
|
||||
name: "Niral Kapadia",
|
||||
role: "Local Guide",
|
||||
company: "Hamilton Township Resident",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-old-woman-posing-with-flowers_23-2148695393.jpg",
|
||||
imageAlt: "Niral Kapadia",
|
||||
},
|
||||
id: "tst1", name: "Niral Kapadia", role: "Local Guide", company: "Hamilton Township Resident", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-old-woman-posing-with-flowers_23-2148695393.jpg", imageAlt: "Niral Kapadia"},
|
||||
{
|
||||
id: "tst2",
|
||||
name: "Paulette Foti-McMullen",
|
||||
role: "Homeowner",
|
||||
company: "Hamilton Township Resident",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-couple-smiling-resting-picnic-park_176420-774.jpg",
|
||||
imageAlt: "Paulette Foti-McMullen",
|
||||
},
|
||||
id: "tst2", name: "Paulette Foti-McMullen", role: "Homeowner", company: "Hamilton Township Resident", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-couple-smiling-resting-picnic-park_176420-774.jpg", imageAlt: "Paulette Foti-McMullen"},
|
||||
{
|
||||
id: "tst3",
|
||||
name: "Robert G.",
|
||||
role: "Homeowner",
|
||||
company: "Local Client",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-small-business-owners_53876-128889.jpg",
|
||||
imageAlt: "Robert G.",
|
||||
},
|
||||
id: "tst3", name: "Robert G.", role: "Homeowner", company: "Local Client", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-small-business-owners_53876-128889.jpg", imageAlt: "Robert G."},
|
||||
{
|
||||
id: "tst4",
|
||||
name: "Sarah L.",
|
||||
role: "Resident",
|
||||
company: "Satisfied Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-outdoors-white-shirt-looking-camera_197531-33797.jpg",
|
||||
imageAlt: "Sarah L.",
|
||||
},
|
||||
id: "tst4", name: "Sarah L.", role: "Resident", company: "Satisfied Customer", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-outdoors-white-shirt-looking-camera_197531-33797.jpg", imageAlt: "Sarah L."},
|
||||
{
|
||||
id: "tst5",
|
||||
name: "Michael D.",
|
||||
role: "Business Owner",
|
||||
company: "Commercial Client",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-beautiful-woman-sits-cafe-with-laptop-works-studies-online-coworking-space_1258-199167.jpg",
|
||||
imageAlt: "Michael D.",
|
||||
},
|
||||
id: "tst5", name: "Michael D.", role: "Business Owner", company: "Commercial Client", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-beautiful-woman-sits-cafe-with-laptop-works-studies-online-coworking-space_1258-199167.jpg", imageAlt: "Michael D."},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Hear directly from homeowners who have experienced the Parker's Landscaping difference and love their transformed outdoor spaces."
|
||||
@@ -337,14 +216,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Local Homeowners",
|
||||
"Community Centers",
|
||||
"Property Managers",
|
||||
"Small Businesses",
|
||||
"Retail Stores",
|
||||
"Healthcare Facilities",
|
||||
"Educational Institutions",
|
||||
]}
|
||||
"Local Homeowners", "Community Centers", "Property Managers", "Small Businesses", "Retail Stores", "Healthcare Facilities", "Educational Institutions"]}
|
||||
title="Trusted by Our Community"
|
||||
description="Proudly serving homeowners and businesses across Hamilton Township with dedication and excellence, building strong relationships one yard at a time."
|
||||
speed={40}
|
||||
@@ -357,25 +229,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "What services does Parker's Landscaping LLC offer?",
|
||||
content: "We offer a comprehensive range of landscaping services including weeding, mulching, grass seeding, lawn renovation, and seasonal cleanups. We tailor our services to meet your specific needs.",
|
||||
},
|
||||
id: "q1", title: "What services does Parker's Landscaping LLC offer?", content: "We offer a comprehensive range of landscaping services including weeding, mulching, grass seeding, lawn renovation, and seasonal cleanups. We tailor our services to meet your specific needs."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "How can I get a free estimate for my project?",
|
||||
content: "You can easily request a free estimate by contacting us through our website's contact form, giving us a call, or sending an email. We'll schedule a convenient time to assess your needs.",
|
||||
},
|
||||
id: "q2", title: "How can I get a free estimate for my project?", content: "You can easily request a free estimate by contacting us through our website's contact form, giving us a call, or sending an email. We'll schedule a convenient time to assess your needs."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Do you provide ongoing lawn maintenance?",
|
||||
content: "Yes, we offer regular maintenance plans to keep your lawn and garden looking their best year-round. These can include routine weeding, mulching, and general upkeep. Contact us to discuss a custom plan.",
|
||||
},
|
||||
id: "q3", title: "Do you provide ongoing lawn maintenance?", content: "Yes, we offer regular maintenance plans to keep your lawn and garden looking their best year-round. These can include routine weeding, mulching, and general upkeep. Contact us to discuss a custom plan."},
|
||||
{
|
||||
id: "q4",
|
||||
title: "What areas do you serve?",
|
||||
content: "Parker's Landscaping LLC proudly serves Hamilton Township, NJ, and surrounding communities. Please reach out to us to confirm service availability in your specific location.",
|
||||
},
|
||||
id: "q4", title: "What areas do you serve?", content: "Parker's Landscaping LLC proudly serves Hamilton Township, NJ, and surrounding communities. Please reach out to us to confirm service availability in your specific location."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-garden-tools_93675-131210.jpg"
|
||||
imageAlt="Landscaping tools"
|
||||
@@ -391,16 +251,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
tag="Get Started"
|
||||
title="Ready for a Beautiful Yard?"
|
||||
description="Contact Parker's Landscaping LLC today for a free consultation and let us transform your outdoor space into the lush, vibrant landscape you've always dreamed of."
|
||||
buttons={[
|
||||
{
|
||||
text: "Request a Free Quote",
|
||||
href: "tel:+16096356310",
|
||||
},
|
||||
text: "Request a Free Quote", href: "tel:+16096356310"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -410,58 +267,35 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Our Team",
|
||||
href: "#team",
|
||||
},
|
||||
label: "Our Team", href: "#team"},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
label: "Testimonials", href: "#testimonials"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "All Services",
|
||||
href: "#services",
|
||||
},
|
||||
label: "All Services", href: "#services"},
|
||||
{
|
||||
label: "Weeding",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Weeding", href: "#services"},
|
||||
{
|
||||
label: "Mulching",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Mulching", href: "#services"},
|
||||
{
|
||||
label: "Grass Seeding",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Grass Seeding", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Get a Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Get a Quote", href: "#contact"},
|
||||
{
|
||||
label: "(609) 635-6310",
|
||||
href: "tel:+16096356310",
|
||||
},
|
||||
label: "(609) 635-6310", href: "tel:+16096356310"},
|
||||
{
|
||||
label: "Hamilton Township, NJ",
|
||||
href: "#",
|
||||
},
|
||||
label: "Hamilton Township, NJ", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user