225 lines
11 KiB
TypeScript
225 lines
11 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
import { Award, Home, Star, Leaf, MessageCircle, HelpCircle, TrendingUp, Sparkles } from 'lucide-react';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="directional-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="mediumSmall"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="circleGradient"
|
|
cardStyle="soft-shadow"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="A&E Lawn Care"
|
|
navItems={[
|
|
{ name: "Home", id: "hero" },
|
|
{ name: "Services", id: "services" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Testimonials", id: "testimonials" }
|
|
]}
|
|
button={{ text: "Get Your Free Quote", href: "#contact" }}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitKpi
|
|
title="Lawn Care Excellence in Richmond Hill"
|
|
description="Professional lawn maintenance services that transform outdoor spaces. We deliver premium care with attention to detail, keeping your lawn healthy and beautiful year-round."
|
|
background={{ variant: "glowing-orb" }}
|
|
kpis={[
|
|
{ value: "10+", label: "Years Experience" },
|
|
{ value: "500+", label: "Happy Clients" },
|
|
{ value: "100%", label: "Satisfaction Guarantee" }
|
|
]}
|
|
enableKpiAnimation={true}
|
|
tag="Local Service Providers"
|
|
tagIcon={Leaf}
|
|
imageSrc="http://img.b2bpic.net/free-photo/unrecognizable-male-gardener-pushing-modern-lawn-mower-while-walking-grass-view-handyman_7502-10570.jpg"
|
|
imageAlt="Beautiful manicured lawn in Richmond Hill"
|
|
mediaAnimation="slide-up"
|
|
buttons={[
|
|
{ text: "Book Service", href: "#contact" },
|
|
{ text: "Learn More", href: "#services" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
imagePosition="right"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<InlineImageSplitTextAbout
|
|
heading={[
|
|
{ type: "text", content: "A&E Lawn Care is your trusted partner for" },
|
|
{ type: "image", src: "http://img.b2bpic.net/free-vector/round-leaves-logo_78370-2528.jpg", alt: "Leaf icon" },
|
|
{ type: "text", content: "comprehensive lawn care in Richmond Hill, Ontario" }
|
|
]}
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Our Story", href: "#" },
|
|
{ text: "Contact Us", href: "#contact" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardTwelve
|
|
features={[
|
|
{
|
|
id: "mowing", label: "Mowing", title: "Professional Lawn Mowing", items: ["Weekly or bi-weekly service", "Precision cutting and edging", "Grass clippings removed"],
|
|
buttons: [{ text: "Learn More", href: "#" }]
|
|
},
|
|
{
|
|
id: "landscaping", label: "Landscaping", title: "Landscape Design & Installation", items: ["Custom garden design", "Plant installation and care", "Hardscaping solutions"],
|
|
buttons: [{ text: "Learn More", href: "#" }]
|
|
},
|
|
{
|
|
id: "maintenance", label: "Maintenance", title: "Year-Round Lawn Maintenance", items: ["Seasonal cleanup", "Fertilization programs", "Weed control services"],
|
|
buttons: [{ text: "Learn More", href: "#" }]
|
|
}
|
|
]}
|
|
animationType="scale-rotate"
|
|
title="Our Services"
|
|
description="Comprehensive lawn care solutions tailored to your property's needs"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
tag="Services"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardOne
|
|
metrics={[
|
|
{ id: "1", value: "500", title: "properties", description: "Maintained in Richmond Hill", icon: Home },
|
|
{ id: "2", value: "10", title: "years", description: "Of professional service", icon: Award },
|
|
{ id: "3", value: "98", title: "percent", description: "Customer satisfaction rate", icon: Star }
|
|
]}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
title="Our Track Record"
|
|
description="Proven results and customer satisfaction metrics"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
tag="Statistics"
|
|
tagIcon={TrendingUp}
|
|
tagAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSixteen
|
|
testimonials={[
|
|
{ id: "1", name: "John Mitchell", role: "Homeowner", company: "Richmond Hill, ON", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "John Mitchell" },
|
|
{ id: "2", name: "Sarah Chen", role: "Property Manager", company: "Richmond Hill, ON", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=1", imageAlt: "Sarah Chen" },
|
|
{ id: "3", name: "David Martinez", role: "Homeowner", company: "Richmond Hill, ON", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "David Martinez" },
|
|
{ id: "4", name: "Emma Thompson", role: "Business Owner", company: "Richmond Hill, ON", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=2", imageAlt: "Emma Thompson" }
|
|
]}
|
|
kpiItems={[
|
|
{ value: "500+", label: "Projects Completed" },
|
|
{ value: "98%", label: "Client Satisfaction" },
|
|
{ value: "10+", label: "Years Experience" }
|
|
]}
|
|
animationType="slide-up"
|
|
title="What Our Clients Say"
|
|
description="Real testimonials from satisfied customers in Richmond Hill"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
tag="Testimonials"
|
|
tagIcon={MessageCircle}
|
|
tagAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitMedia
|
|
faqs={[
|
|
{ id: "1", title: "How often should my lawn be mowed?", content: "During the growing season (spring and summer), weekly mowing is typically recommended to maintain optimal lawn health and appearance. During fall and early spring, bi-weekly service may be sufficient." },
|
|
{ id: "2", title: "Do you offer seasonal services?", content: "Yes! We provide spring cleanup, summer maintenance, fall leaf removal, and winter preparation services to keep your lawn healthy throughout the year." },
|
|
{ id: "3", title: "Are your services eco-friendly?", content: "We prioritize sustainable practices including proper grass disposal, organic fertilization options, and environmentally conscious pest management to protect your lawn and local ecosystem." },
|
|
{ id: "4", title: "What areas of Richmond Hill do you service?", content: "We proudly service all of Richmond Hill, Ontario and surrounding areas. Contact us to confirm service availability for your specific location." },
|
|
{ id: "5", title: "How do I get a quote?", content: "Simply reach out to us through our contact form or call for a free consultation. We'll assess your property and provide a competitive quote tailored to your needs." }
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg"
|
|
imageAlt="Professional lawn care team working on maintenance"
|
|
mediaAnimation="slide-up"
|
|
mediaPosition="left"
|
|
title="Frequently Asked Questions"
|
|
description="Common questions about our lawn care services"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
tag="FAQ"
|
|
tagIcon={HelpCircle}
|
|
tagAnimation="slide-up"
|
|
faqsAnimation="blur-reveal"
|
|
animationType="smooth"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactText
|
|
text="Ready to transform your lawn? Contact A&E Lawn Care today for a free quote and let us handle your lawn care needs with professional expertise."
|
|
animationType="reveal-blur"
|
|
buttons={[
|
|
{ text: "Get Free Quote", href: "tel:+16475551234" },
|
|
{ text: "Email Us", href: "mailto:info@aelawncare.ca" }
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Lawn Mowing", href: "#services" },
|
|
{ label: "Landscaping", href: "#services" },
|
|
{ label: "Maintenance", href: "#services" }
|
|
]
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "#about" },
|
|
{ label: "Our Team", href: "#" },
|
|
{ label: "Contact", href: "#contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Support", items: [
|
|
{ label: "FAQ", href: "#faq" },
|
|
{ label: "Get Quote", href: "#contact" },
|
|
{ label: "Testimonials", href: "#testimonials" }
|
|
]
|
|
}
|
|
]}
|
|
bottomLeftText="© 2025 A&E Lawn Care. All rights reserved."
|
|
bottomRightText="Serving Richmond Hill, Ontario"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|