251 lines
14 KiB
TypeScript
251 lines
14 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
|
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
|
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
|
|
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
|
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
|
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
|
import ContactText from "@/components/sections/contact/ContactText";
|
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
|
import { CheckCircle, Sparkles, Star, TrendingUp, Quote } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="elastic-effect"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="floatingGradient"
|
|
cardStyle="soft-shadow"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="bold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{ name: "Home", id: "home" },
|
|
{ name: "Services", id: "services" },
|
|
{ name: "Why Us", id: "why-us" },
|
|
{ name: "Reviews", id: "reviews" },
|
|
{ name: "Contact", id: "contact" },
|
|
]}
|
|
brandName="Tennessee Turf"
|
|
bottomLeftText="Professional Lawn Care"
|
|
bottomRightText="(615) 946-7337"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitKpi
|
|
title="Professional Lawn Care in Tennessee You Can Trust"
|
|
description="Reliable, affordable lawn care service for homeowners who want a yard they're proud of. Locally owned with 4.7-star reviews."
|
|
background={{ variant: "glowing-orb" }}
|
|
kpis={[
|
|
{ value: "4.7★", label: "Customer Rating" },
|
|
{ value: "9+", label: "Verified Reviews" },
|
|
{ value: "Local", label: "Owned & Operated" },
|
|
]}
|
|
enableKpiAnimation={true}
|
|
tag="Trusted Local Service"
|
|
tagIcon={CheckCircle}
|
|
tagAnimation="slide-up"
|
|
buttons={[
|
|
{ text: "Call Now: (615) 946-7337", href: "tel:+16159467337" },
|
|
{ text: "Get Free Estimate", href: "#contact" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
imageSrc="http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard_1303-22795.jpg"
|
|
imageAlt="Professional lawn care results"
|
|
mediaAnimation="slide-up"
|
|
imagePosition="right"
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardTen
|
|
features={[
|
|
{
|
|
id: "1", title: "Professional Lawn Mowing", description: "Weekly or bi-weekly mowing services with attention to detail. We trim edges, bag clippings, and leave your lawn looking pristine every time.", media: {
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-male-landscaper-denim-shirt-trimming-overgrown-lawn-with-lawn-mover-summer-day-low_7502-10170.jpg"},
|
|
items: [
|
|
{ icon: CheckCircle, text: "Consistent weekly service" },
|
|
{ icon: CheckCircle, text: "Professional equipment" },
|
|
{ icon: CheckCircle, text: "Edge trimming included" },
|
|
],
|
|
reverse: false,
|
|
},
|
|
{
|
|
id: "2", title: "Turf Care & Maintenance", description: "Comprehensive turf health programs including aeration, overseeding, and seasonal treatments to keep your grass healthy and vibrant.", media: {
|
|
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-digging-grass-up_23-2147714901.jpg"},
|
|
items: [
|
|
{ icon: CheckCircle, text: "Seasonal treatments" },
|
|
{ icon: CheckCircle, text: "Aeration & overseeding" },
|
|
{ icon: CheckCircle, text: "Weed control solutions" },
|
|
],
|
|
reverse: true,
|
|
},
|
|
{
|
|
id: "3", title: "Seasonal Yard Cleanups", description: "Spring and fall cleanups to keep your property looking great year-round. We handle leaves, debris removal, and property preparation.", media: {
|
|
imageSrc: "http://img.b2bpic.net/free-photo/people-operating-heavy-duty-leaf-blower_1153-7263.jpg"},
|
|
items: [
|
|
{ icon: CheckCircle, text: "Spring cleanup service" },
|
|
{ icon: CheckCircle, text: "Fall leaf removal" },
|
|
{ icon: CheckCircle, text: "Debris hauling" },
|
|
],
|
|
reverse: false,
|
|
},
|
|
{
|
|
id: "4", title: "Fertilization & Lawn Health", description: "Strategic fertilization programs designed for Tennessee's climate to promote healthy growth and vibrant color throughout the season.", media: {
|
|
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-digging-grass-up_23-2147714901.jpg"},
|
|
items: [
|
|
{ icon: CheckCircle, text: "Custom fertilization plans" },
|
|
{ icon: CheckCircle, text: "Climate-optimized formulas" },
|
|
{ icon: CheckCircle, text: "Soil health monitoring" },
|
|
],
|
|
reverse: true,
|
|
},
|
|
]}
|
|
title="Complete Lawn & Turf Care Services"
|
|
description="We deliver consistent, high-quality lawn care tailored to your property's specific needs."
|
|
tag="Services"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="why-us" data-section="why-us">
|
|
<TextSplitAbout
|
|
title="Why Homeowners Choose Tennessee Turf"
|
|
description={[
|
|
"Professional & Courteous Crew - Our team treats your property with the same respect we'd show our own homes.", "Prompt & Reliable Service - We show up on schedule and get the job done right, every time.", "Affordable Pricing - Premium service without premium pricing. We believe quality lawn care should be accessible.", "Locally Owned & Operated - We're your neighbors, invested in making our community's yards beautiful.", "Attention to Detail - From perfect edge lines to thoughtful debris removal, we care about the small things."]}
|
|
buttons={[
|
|
{ text: "Schedule Your Service", href: "#contact" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
showBorder={true}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="reviews" data-section="reviews">
|
|
<TestimonialCardTwo
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Mary R.", role: "Homeowner", testimonial: "They are always considerate with you and your property, professional, and genuinely care about the job they do. Couldn't ask for better service!", icon: Quote,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg", imageAlt: "customer portrait professional headshot woman headshot satisfied customer business portrait"},
|
|
{
|
|
id: "2", name: "Katie C.", role: "Property Owner", testimonial: "Excellent service! They do exactly what you want, no matter how big or small the job. Very responsive and attentive to detail.", icon: Quote,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "customer portrait professional headshot man headshot satisfied customer business portrait"},
|
|
{
|
|
id: "3", name: "Deanna P.", role: "Homeowner", testimonial: "They make my yard look like a million bucks at a very affordable price. Best lawn care decision I've made!", icon: Quote,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-businesswoman_1098-3531.jpg", imageAlt: "customer portrait professional headshot woman headshot customer review business portrait"},
|
|
{
|
|
id: "4", name: "James T.", role: "HOA Manager", testimonial: "Professional crew, reliable scheduling, and outstanding results. They've maintained our community properties for two years with consistent excellence.", icon: Quote,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "customer portrait professional headshot man headshot customer review business portrait"},
|
|
{
|
|
id: "5", name: "Sarah M.", role: "Homeowner", testimonial: "Extremely personable and respectful. They respect my property like their own and always go above and beyond the basic service.", icon: Quote,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg", imageAlt: "customer portrait professional headshot woman headshot satisfied client business portrait"},
|
|
{
|
|
id: "6", name: "David L.", role: "Property Manager", testimonial: "Consistent quality and reliability. They've been our go-to lawn care provider for multiple properties. Highly recommended!", icon: Quote,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "customer portrait professional headshot man headshot satisfied client business portrait"},
|
|
]}
|
|
title="What Our Customers Say"
|
|
description="Real feedback from homeowners who trust Tennessee Turf with their lawn care."
|
|
tag="Customer Reviews"
|
|
tagIcon={Star}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={true}
|
|
carouselMode="buttons"
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardSeven
|
|
metrics={[
|
|
{
|
|
id: "1", value: "4.7★", title: "Customer Rating", items: ["9+ verified reviews", "High satisfaction rate", "Trusted by the community"],
|
|
},
|
|
{
|
|
id: "2", value: "100%", title: "On-Time Service", items: ["Reliable scheduling", "Professional crew", "Consistent delivery"],
|
|
},
|
|
{
|
|
id: "3", value: "$", title: "Affordable Pricing", items: ["Competitive rates", "No hidden fees", "Transparent quotes"],
|
|
},
|
|
]}
|
|
title="Our Track Record"
|
|
description="Trusted by homeowners throughout Tennessee for professional lawn care service."
|
|
tag="By the Numbers"
|
|
tagIcon={TrendingUp}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactText
|
|
text="Ready for a lawn you're proud of? Get your free estimate today and experience the Tennessee Turf difference."
|
|
animationType="entrance-slide"
|
|
buttons={[
|
|
{ text: "Call (615) 946-7337", href: "tel:+16159467337" },
|
|
{ text: "Request Free Estimate", href: "#contact-form" },
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Navigation", items: [
|
|
{ label: "Home", href: "#home" },
|
|
{ label: "Services", href: "#services" },
|
|
{ label: "Why Us", href: "#why-us" },
|
|
{ label: "Reviews", href: "#reviews" },
|
|
],
|
|
},
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Lawn Mowing", href: "#services" },
|
|
{ label: "Turf Care", href: "#services" },
|
|
{ label: "Seasonal Cleanups", href: "#services" },
|
|
{ label: "Fertilization", href: "#services" },
|
|
],
|
|
},
|
|
{
|
|
title: "Contact", items: [
|
|
{ label: "Call (615) 946-7337", href: "tel:+16159467337" },
|
|
{ label: "Get Free Estimate", href: "#contact" },
|
|
{ label: "Service Area", href: "#" },
|
|
{ label: "Book Now", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Licensed & Insured", href: "#" },
|
|
],
|
|
},
|
|
]}
|
|
bottomLeftText="© 2025 Tennessee Turf Lawncare Services, Inc. All rights reserved."
|
|
bottomRightText="Professional Lawn Care • Local Service • Tennessee-Based"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|