Update src/app/about/page.tsx

This commit is contained in:
2026-03-25 18:01:41 +00:00
parent cffa20ac3c
commit 85544212c7

View File

@@ -7,7 +7,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import { Users } from "lucide-react";
import { Users, BookUser, Leaf, CalendarCheck, HeartHandshake } from "lucide-react";
export default function LandingPage() {
return (
@@ -28,31 +28,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
href: "/",
id: "1",
},
name: "Home", id: "/"},
{
name: "Services",
href: "/services",
id: "2",
},
name: "Services", id: "/services"},
{
name: "About",
href: "/about",
id: "3",
},
name: "About", id: "/about"},
{
name: "Contact",
href: "/contact",
id: "4",
},
name: "Contact", id: "/contact"},
]}
brandName="Carlton Lawncare"
button={{
text: "Get a Free Quote",
href: "/contact",
}}
text: "Get a Free Quote", href: "/contact"}}
/>
</div>
@@ -66,28 +52,20 @@ export default function LandingPage() {
tagIcon={BookUser}
buttons={[
{
text: "Explore Our Services",
href: "/services",
},
text: "Explore Our Services", href: "/services"},
]}
bulletPoints={[
{
title: "Unmatched Quality",
description: "We use only the best equipment and techniques to ensure your lawn receives superior care.",
icon: Leaf,
title: "Unmatched Quality", description: "We use only the best equipment and techniques to ensure your lawn receives superior care.", icon: Leaf,
},
{
title: "Reliable Service",
description: "Our team is always on time, dependable, and meticulous in every task we undertake.",
icon: CalendarCheck,
title: "Reliable Service", description: "Our team is always on time, dependable, and meticulous in every task we undertake.", icon: CalendarCheck,
},
{
title: "Customer Satisfaction",
description: "Your happiness and the beauty of your lawn are our top priorities, guaranteed.",
icon: HeartHandshake,
title: "Customer Satisfaction", description: "Your happiness and the beauty of your lawn are our top priorities, guaranteed.", icon: HeartHandshake,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/couple-talking-while-examining-plants-with-digital-tablet-vegetable-garden_662251-682.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/couple-talking-while-examining-plants-with-digital-tablet-vegetable-garden_662251-682.jpg"
imageAlt="Professional lawn care team working in a garden"
mediaAnimation="blur-reveal"
/>
@@ -101,6 +79,15 @@ export default function LandingPage() {
description="Our team comprises highly skilled and passionate lawn care specialists, each dedicated to bringing out the best in your landscape. Were not just maintaining lawns; were cultivating beauty."
tag="Our Team"
tagIcon={Users}
animationType="slide-up"
team={[
{
name: "John Carlton", description: "Founder & Lead Horticulturist", imageSrc: "http://img.b2bpic.net/free-photo/friendly-handsome-business-leader-cafe_1262-3537.jpg", imageAlt: "John Carlton, Founder"
},
{
name: "Sarah Lee", description: "Senior Landscape Designer", imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15151.jpg", imageAlt: "Sarah Lee, Senior Landscape Designer"
}
]}
/>
</div>
@@ -112,20 +99,11 @@ export default function LandingPage() {
tagAnimation="slide-up"
metrics={[
{
id: "1",
value: "15+",
description: "Years of Dedicated Service",
},
id: "1", value: "15+", description: "Years of Dedicated Service"},
{
id: "2",
value: "500+",
description: "Happy Clients Across Jackson, MI",
},
id: "2", value: "500+", description: "Happy Clients Across Jackson, MI"},
{
id: "3",
value: "98%",
description: "Customer Satisfaction Rate",
},
id: "3", value: "98%", description: "Customer Satisfaction Rate"},
]}
metricsAnimation="slide-up"
/>
@@ -135,46 +113,29 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Mowing & Edging",
href: "/services",
},
label: "Mowing & Edging", href: "/services"},
{
label: "Shrub Trimming",
href: "/services",
},
label: "Shrub Trimming", href: "/services"},
{
label: "Weed Control",
href: "/services",
},
label: "Weed Control", href: "/services"},
{
label: "Seasonal Cleanups",
href: "/services",
},
label: "Seasonal Cleanups", href: "/services"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/privacy-policy",
},
label: "Privacy Policy", href: "/privacy-policy"},
],
},
]}