Files
8eb9b253-98fc-4f19-8d4b-3a4…/src/app/about/page.tsx
2026-03-23 03:15:07 +00:00

193 lines
8.0 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { MapPin, Sparkles, Users, HeartHandshake, Leaf } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles"
background="floatingGradient"
cardStyle="gradient-radial"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "/"},
{
name: "Services", id: "/services"},
{
name: "About", id: "/about"},
{
name: "Reviews", id: "/reviews"},
{
name: "Contact", id: "/contact"},
]}
brandName="Fresh Cut Lawn Crew LLC"
bottomLeftText="Your Lawn, Our Passion"
bottomRightText="Call Now: (555) 123-4567"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="default"
useInvertedBackground={false}
title="Dedicated to Denver's Green Spaces"
description="Fresh Cut Lawn Crew LLC was founded with a commitment to enhancing the beauty and health of Denver's outdoor environments. As a local, family-owned business, we pride ourselves on building lasting relationships through reliable, high-quality service and a genuine passion for landscaping."
tag="Our Story"
tagIcon={Sparkles}
bulletPoints={[
{
title: "Family-Owned & Local", description: "Proudly serving our Denver community for years.", icon: Users,
},
{
title: "Quality & Reliability", description: "Consistent, meticulous service you can always depend on.", icon: MapPin,
},
{
title: "Customer Satisfaction", description: "Your lawn's health and your happiness are our top priorities.", icon: HeartHandshake,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/father-son-browsing-internet-camping_329181-10542.jpg"
imageAlt="Fresh Cut Lawn Crew family working together"
mediaAnimation="slide-up"
/>
</div>
<div id="metric-about" data-section="metric-about">
<MetricSplitMediaAbout
useInvertedBackground={true}
title="Nurturing Denver Lawns for Years"
description="Our track record speaks for itself. We're proud to have transformed countless landscapes and earned the trust of homeowners across the Denver metro area."
metrics={[
{
value: "20+", title: "Years of Service"},
{
value: "5-Star", title: "Average Rating"},
{
value: "100s", title: "Glowing Reviews"},
]}
tag="Our Impact"
tagIcon={Leaf}
imageSrc="http://img.b2bpic.net/free-photo/green-park-view_1417-1499.jpg"
imageAlt="Lush, perfectly maintained lawn"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
<div id="team-about" data-section="team-about">
<TeamCardFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
team={[
{
id: "1", name: "John Doe", role: "Lead Horticulturist", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-home_23-2150062545.jpg", imageAlt: "Fresh Cut Lawn Crew Lead Horticulturist"},
{
id: "2", name: "Jane Smith", role: "Operations Manager", imageSrc: "http://img.b2bpic.net/free-photo/portrait-expressive-woman_344912-2023.jpg", imageAlt: "Fresh Cut Lawn Crew Operations Manager"},
{
id: "3", name: "Robert Brown", role: "Senior Lawn Technician", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-talking-phone-near-fence_23-2147779733.jpg", imageAlt: "Fresh Cut Lawn Crew Senior Lawn Technician"},
{
id: "4", name: "Jessica Green", role: "Customer Relations Specialist", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-embroidered-shirt_23-2149394273.jpg", imageAlt: "Fresh Cut Lawn Crew Customer Relations Specialist"},
]}
title="Meet the Fresh Cut Lawn Crew Team"
description="Our skilled and friendly team members are passionate about horticulture and committed to delivering exceptional results for every property we care for."
tag="Our Crew"
tagIcon={Users}
/>
</div>
<div id="testimonial-feature" data-section="testimonial-feature">
<TestimonialCardFifteen
useInvertedBackground={true}
testimonial="The Fresh Cut Lawn Crew team always goes above and beyond! Our lawn has never looked better, and their responsiveness is truly impressive. Highly recommend their reliable service!"
rating={5}
author="A Happy Client, Denver CO"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/parents-son-posing-with-thumbs-up_23-2148414902.jpg", alt: "Client avatar"},
{
src: "http://img.b2bpic.net/free-photo/young-adult-teaching-elderly-person-about-degital-devicer_23-2149212018.jpg", alt: "Client avatar"},
{
src: "http://img.b2bpic.net/free-photo/happy-young-shopper-satisfied-with-discount_1262-14986.jpg", alt: "Client avatar"},
]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
/>
</div>
<div id="contact-cta-about" data-section="contact-cta-about">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "sparkles-gradient"}}
tag="Ready for a Greener Lawn?"
title="Partner with Fresh Cut Lawn Crew Today."
description="Whether you need ongoing maintenance or a specific landscaping project, our expert team is ready to provide top-tier service. Contact us for a free estimate!"
buttons={[
{
text: "Get a Free Estimate", href: "/contact"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services", items: [
{
label: "Lawn Mowing", href: "/services"},
{
label: "Aeration", href: "/services"},
{
label: "Fertilization", href: "/services"},
{
label: "Seasonal Cleanup", href: "/services"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "/about"},
{
label: "Reviews", href: "/reviews"},
{
label: "Contact Us", href: "/contact"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
logoText="Fresh Cut Lawn Crew LLC"
copyrightText="© 2024 Fresh Cut Lawn Crew LLC. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}