Merge version_2_1782055276881 into main #1
284
src/app/page.tsx
284
src/app/page.tsx
@@ -2,17 +2,17 @@
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
||||
import TeamCardSix from "@/components/sections/team/TeamCardSix";
|
||||
import NavbarFullscreen from "@/components/ui/NavbarFullscreen";
|
||||
import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial";
|
||||
import AboutTextSplit from "@/components/sections/about/AboutTextSplit";
|
||||
import FeaturesBorderGlow from "@/components/sections/features/FeaturesBorderGlow";
|
||||
import TeamGlassCards from "@/components/sections/team/TeamGlassCards";
|
||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Leaf } from "lucide-react";
|
||||
import TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard";
|
||||
import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn";
|
||||
import ContactSplitEmail from "@/components/sections/contact/ContactSplitEmail";
|
||||
import FooterSimpleReveal from "@/components/sections/footer/FooterSimpleReveal";
|
||||
import { Leaf, Award, MapPin, Target, Star } from "lucide-react";
|
||||
|
||||
export default function LandscapingPage() {
|
||||
return (
|
||||
@@ -30,255 +30,125 @@ export default function LandscapingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="Coastal Lawn Care"
|
||||
<NavbarFullscreen
|
||||
logo="Coastal Lawn Care"
|
||||
navItems={[
|
||||
{ name: "Our Services", id: "services" },
|
||||
{ name: "About Us", id: "about" },
|
||||
{ name: "Why Choose Us", id: "why-us" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Services", href: "#services" },
|
||||
{ name: "About", href: "#about" },
|
||||
{ name: "Team", href: "#team" },
|
||||
{ name: "FAQ", href: "#faq" },
|
||||
{ name: "Contact", href: "#contact" }
|
||||
]}
|
||||
button={{ text: "Call Now", href: "tel:13215551234" }}
|
||||
ctaButton={{ text: "Get Quote", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
tag="Turf Maintenance Experts"
|
||||
tagIcon={Leaf}
|
||||
title="Professional Lawn Care, Local Expertise, Consistent Results"
|
||||
description="We handle mowing, edging, and seasonal care so your lawn stays healthy year-round. Reliable service every week in Brevard County, FL."
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:13215551234" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/walkway-summer-park-with-palm-trees-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18717.jpg"
|
||||
imageAlt="Perfectly manicured lawn in Brevard County, Florida"
|
||||
showDimOverlay={true}
|
||||
textPosition="top"
|
||||
<HeroBillboardTestimonial
|
||||
tag="Professional Landscaping"
|
||||
title="Brevard County's Premier Lawn Care Experts"
|
||||
description="Expert lawn maintenance and landscape design tailored for the Florida climate. Reliable, consistent, and professional."
|
||||
primaryButton={{ text: "Our Services", href: "#services" }}
|
||||
secondaryButton={{ text: "Contact Us", href: "#contact" }}
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah M.", handle: "Homeowner, Melbourne FL", testimonial: "Coastal Lawn Care transformed our property. Always on time, always perfect, and our lawn has never looked better!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821272.jpg", imageAlt: "Sarah M."
|
||||
},
|
||||
{
|
||||
name: "David K.", handle: "Property Manager, Palm Bay FL", testimonial: "Coastal Lawn Care provides dependable service for all our rental properties. Their professionalism and consistency make my job so much easier.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821272.jpg", imageAlt: "David K."
|
||||
name: "Sarah M.", handle: "@melbourne_home", text: "Coastal Lawn Care is incredibly reliable and my lawn has never looked healthier. Highly recommended!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821272.jpg"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="About Coastal Lawn Care"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
title="Dedicated to reliable, professional lawn care across Brevard County, making healthy, beautiful lawns accessible to everyone."
|
||||
description="Serving our community with pride since 2018."
|
||||
subdescription="Local Expertise, Trusted Results."
|
||||
icon={Leaf}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-attractive-male-gardener-glasses-posing-while-trimming-bush-with-electric-hedge-clippers_7502-10137.jpg"
|
||||
imageAlt="Lawn care professional working on a lush green lawn"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
<AboutTextSplit
|
||||
title="Our Mission"
|
||||
descriptions={[
|
||||
"We believe that a beautiful home starts with a well-maintained lawn. Since 2018, our team has been committed to delivering top-tier lawn care services that exceed client expectations.", "Our approach combines local horticultural expertise with modern maintenance practices to ensure your yard stays vibrant throughout every Florida season."
|
||||
]}
|
||||
primaryButton={{ text: "Learn More", href: "#why-us" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardNineteen
|
||||
tag="Our Services"
|
||||
tagIcon={Leaf}
|
||||
title="Comprehensive Lawn Maintenance"
|
||||
description="Keep your lawn healthy and vibrant year-round with our full suite of professional services."
|
||||
buttonAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imageContainerClassName="!rotate-0 !aspect-square"
|
||||
<FeaturesBorderGlow
|
||||
tag="Expertise"
|
||||
title="Professional Lawn Care Solutions"
|
||||
description="Comprehensive maintenance plans designed for health, beauty, and long-term sustainability."
|
||||
features={[
|
||||
{
|
||||
tag: "Mowing", title: "Weekly Mowing & Edging", subtitle: "Consistent, Clean Cuts", description: "Regular mowing, precise edging, and careful trimming ensure a consistently neat and healthy lawn appearance.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-gardening-tools-grass_23-2148224034.jpg", imageAlt: "Lawnmower creating stripes on a green lawn"
|
||||
},
|
||||
{
|
||||
tag: "Turf Care", title: "Professional Turf Maintenance", subtitle: "Health & Vitality", description: "Expert fertilization, weed control, and pest management for a robust, disease-free, and lush green turf.", imageSrc: "http://img.b2bpic.net/free-photo/green-long-grass-summer_23-2148179261.jpg", imageAlt: "Close-up of healthy green turf"
|
||||
},
|
||||
{
|
||||
tag: "Seasonal", title: "Seasonal Cleanups & Pruning", subtitle: "Year-Round Readiness", description: "Prepare your lawn for changing seasons with debris removal, shrub pruning, and essential landscape adjustments.", imageSrc: "http://img.b2bpic.net/free-photo/spray-bottle-near-bag-with-gardening-tools_23-2147714846.jpg", imageAlt: "Gardener pruning shrubs"
|
||||
},
|
||||
{
|
||||
tag: "Commercial", title: "Property Management Solutions", subtitle: "Reliable Vendor Partner", description: "Customized, predictable lawn care plans for multi-unit residential properties, ensuring consistent quality and minimal hassle.", imageSrc: "http://img.b2bpic.net/free-photo/skilful-male-landscaper-using-high-altitude-hedge-trimmer-topiary-park-side-view-focused_7502-10164.jpg", imageAlt: "Apartment complex with well-maintained landscaping"
|
||||
}
|
||||
{ icon: Leaf, title: "Mowing & Edging", description: "Precise, clean cuts every week to maintain your lawn's health and visual appeal." },
|
||||
{ icon: Target, title: "Turf Maintenance", description: "Custom fertilization, weed control, and soil nourishment programs." },
|
||||
{ icon: MapPin, title: "Local Care", description: "Knowledge of local Brevard County soil and climate-specific requirements." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="why-us" data-section="why-us">
|
||||
<TeamCardSix
|
||||
title="Why Choose Coastal Lawn Care?"
|
||||
description="Experience the difference with a local team dedicated to your satisfaction."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
<TeamGlassCards
|
||||
tag="Why Choose Us"
|
||||
title="The Coastal Difference"
|
||||
description="Quality service, transparent pricing, and local expertise."
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "Reliability You Can Trust", role: "Consistent service schedule, every week, rain or shine. We show up.", 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 lawn care team with equipment"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Transparent, Predictable Pricing", role: "No hidden fees, clear monthly costs. Budget with confidence.", imageSrc: "http://img.b2bpic.net/free-photo/school-supplies-arrangement-table_23-2148939158.jpg", imageAlt: "Calculator on a desk with financial documents"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Brevard County Local Experts", role: "Knowledge of local climate, soil, and turf needs for optimal results.", imageSrc: "http://img.b2bpic.net/free-photo/spring-park-with-palm-trees-background-mountains-montenegro_501050-666.jpg", imageAlt: "Map of Brevard County, Florida"
|
||||
}
|
||||
{ name: "Reliable Schedule", role: "We show up when promised, guaranteed.", imageSrc: "http://img.b2bpic.net/free-photo/skilful-male-landscaper-using-high-altitude-hedge-trimmer-topiary-park-side-view-focused_7502-10164.jpg" },
|
||||
{ name: "Transparent Pricing", role: "Clear quotes, no hidden costs.", imageSrc: "http://img.b2bpic.net/free-photo/school-supplies-arrangement-table_23-2148939158.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardOne
|
||||
tag="Our Team"
|
||||
title="Meet Our Dedicated Lawn Care Professionals"
|
||||
description="Our skilled team is passionate about delivering exceptional results and customer service."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
tag="Leadership"
|
||||
title="Meet The Experts"
|
||||
description="Our dedicated management team brings years of landscape industry experience to every job."
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "John D.", role: "Lead Turf Specialist", imageSrc: "http://img.b2bpic.net/free-photo/annoyed-young-caucasian-male-gardener-wearing-gardening-hat-holding-flowerpot-isolated-green-wall-with-copy-space_141793-108235.jpg", imageAlt: "Smiling male lawn care specialist"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Maria S.", role: "Operations Manager", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-dressed-formally-office-with-laptop_273609-4628.jpg", imageAlt: "Smiling female operations manager"
|
||||
},
|
||||
{
|
||||
id: "3", name: "David R.", role: "Client Relations", imageSrc: "http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167457.jpg", imageAlt: "Smiling male client relations specialist"
|
||||
}
|
||||
{ name: "John D.", role: "Head Specialist", imageSrc: "http://img.b2bpic.net/free-photo/annoyed-young-caucasian-male-gardener-wearing-gardening-hat-holding-flowerpot-isolated-green-wall-with-copy-space_141793-108235.jpg" },
|
||||
{ name: "Maria S.", role: "Operations", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-dressed-formally-office-with-laptop_273609-4628.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
cardTag="Hear From Our Clients"
|
||||
cardTagIcon={Leaf}
|
||||
cardTitle="Homeowners and property managers trust us for their lawn care needs across Brevard County."
|
||||
buttons={[{ text: "Get a Free Quote", href: "#contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah P.", imageSrc: "http://img.b2bpic.net/free-photo/young-cute-female-posing-indoor_344912-969.jpg", imageAlt: "Happy customer Sarah P."
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael L.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg", imageAlt: "Happy customer Michael L."
|
||||
},
|
||||
{
|
||||
id: "3", name: "Jessica B.", imageSrc: "http://img.b2bpic.net/free-photo/employee-working-with-trendy-clothes_482257-78860.jpg", imageAlt: "Happy customer Jessica B."
|
||||
},
|
||||
{
|
||||
id: "4", name: "Robert G.", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-book-close-up_23-2148973429.jpg", imageAlt: "Happy customer Robert G."
|
||||
}
|
||||
<TestimonialTrustCard
|
||||
quote="Coastal Lawn Care is the most dependable service we have ever used. Our property looks incredible all year round."
|
||||
rating={5}
|
||||
author="Robert G., Palm Bay"
|
||||
avatars={[
|
||||
{ name: "Robert", imageSrc: "http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
tag="FAQs"
|
||||
title="Your Questions, Answered"
|
||||
description="Find quick answers to common questions about our lawn care services."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How often do you provide lawn care service?", content: "We primarily offer reliable weekly mowing and maintenance services to ensure your lawn always looks its best. Seasonal adjustments can be discussed."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What areas do you serve in Brevard County?", content: "Coastal Lawn Care proudly serves homeowners and property managers throughout all of Brevard County, FL, including cities like Melbourne, Palm Bay, Titusville, and Cocoa."
|
||||
},
|
||||
{
|
||||
id: "3", title: "How do you determine pricing for services?", content: "Our pricing is transparent and based on factors like lawn size, service frequency, and specific care requirements. We offer free, no-obligation quotes after an on-site assessment."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Do I need to be home when you service my lawn?", content: "No, as long as we have clear access to your property, you do not need to be home. We'll ensure your gates are closed and everything is secure before we leave."
|
||||
},
|
||||
{
|
||||
id: "5", title: "What if I'm not satisfied with the service?", content: "Your satisfaction is our priority. If you're ever unhappy with our service, please contact us immediately, and we will return to address your concerns at no extra charge."
|
||||
},
|
||||
{
|
||||
id: "6", title: "Do you offer one-time lawn care services?", content: "While we specialize in recurring maintenance for consistent results, we can discuss one-time cleanups or special projects on a case-by-case basis. Contact us for details."
|
||||
}
|
||||
<FaqTwoColumn
|
||||
tag="Q&A"
|
||||
title="Frequently Asked Questions"
|
||||
description="Get answers to the most common questions about our lawn maintenance services."
|
||||
items={[
|
||||
{ question: "Do you provide weekly service?", answer: "Yes, we offer reliable weekly mowing and maintenance scheduling." },
|
||||
{ question: "What areas do you serve?", answer: "We proudly serve the entire Brevard County area, including Melbourne and Palm Bay." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact" className="relative overflow-hidden">
|
||||
<div className="absolute inset-0 w-full h-full">
|
||||
<video
|
||||
src="http://img.b2bpic.net/free-photo/village-view-from_1385-477.jpg"
|
||||
autoPlay
|
||||
muted
|
||||
loop
|
||||
playsInline
|
||||
aria-hidden="true"
|
||||
className="w-full h-full object-cover"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-foreground/70" />
|
||||
</div>
|
||||
<ContactSplitForm
|
||||
title="Request a Free Quote"
|
||||
description="Get started with professional lawn care today! Fill out the form below or call us directly at (321) 555-1234."
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="none"
|
||||
buttonText="Get My Free Quote"
|
||||
contentClassName="!grid-cols-1 max-w-[600px] mx-auto"
|
||||
mediaWrapperClassName="hidden"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number" },
|
||||
{ name: "address", type: "text", placeholder: "Property Address", required: true },
|
||||
{ name: "city", type: "text", placeholder: "City", required: true }
|
||||
]}
|
||||
multiSelect={{
|
||||
name: "service", label: "Interested Services", options: ["Weekly Mowing", "Turf Maintenance", "Seasonal Cleanups", "Property Management"]
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your lawn care needs...", rows: 4, required: true }}
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitEmail
|
||||
tag="Get A Quote"
|
||||
title="Ready for a better lawn?"
|
||||
description="Fill out the form below to receive a free assessment and pricing for your lawn care plan."
|
||||
inputPlaceholder="Email Address"
|
||||
buttonText="Get Free Quote"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/green-long-grass-summer_23-2148179261.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
<FooterSimpleReveal
|
||||
brand="Coastal Lawn Care"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Weekly Mowing", href: "#services" },
|
||||
{ label: "Turf Maintenance", href: "#services" },
|
||||
{ label: "Seasonal Cleanups", href: "#services" },
|
||||
{ label: "Property Management", href: "#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Why Choose Us", href: "#why-us" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "FAQs", href: "#faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "(321) 555-1234", href: "tel:13215551234" },
|
||||
{ label: "info@coastallawncarefl.com", href: "mailto:info@coastallawncarefl.com" },
|
||||
{ label: "Brevard County, FL" }
|
||||
]
|
||||
}
|
||||
{ title: "Services", items: [{ label: "Lawn Care" }, { label: "Turf Mgt" }] },
|
||||
{ title: "Company", items: [{ label: "About" }, { label: "Contact" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 Coastal Lawn Care. All rights reserved."
|
||||
bottomRightText="Servicing Brevard County, Florida"
|
||||
copyright="© 2024 Coastal Lawn Care"
|
||||
links={[{ label: "Privacy" }, { label: "Terms" }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user