Update src/app/about/page.tsx

This commit is contained in:
2026-03-26 16:32:42 +00:00
parent f2cfc3e293
commit 8c5af96b33

View File

@@ -5,109 +5,57 @@ import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { Award, CheckCircle, Clock } from "lucide-react";
import { Users, Wrench, Heart } from "lucide-react";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Walden Ridge"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="Walden Ridge"
/>
</div>
<div id="about-body" data-section="about-body">
<AboutMetric
useInvertedBackground={false}
title="Why Walden Ridge Service Station?"
metrics={[
{
icon: Award,
label: "Years Experience",
value: "20+",
},
{
icon: Clock,
label: "Same-Day Turnaround",
value: "80%",
},
{
icon: CheckCircle,
label: "Local Trusted",
value: "100%",
},
]}
metricsAnimation="slide-up"
/>
</div>
<div id="about-body" data-section="about-body">
<AboutMetric
title="Built on Trust. Backed by Experience."
useInvertedBackground={false}
metrics={[
{ icon: Users, label: "Locally Owned", value: "Yes" },
{ icon: Wrench, label: "Mechanical Experience", value: "20+ Yrs" },
{ icon: Heart, label: "Commitment", value: "100%" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Lawn Mowers",
href: "/services",
},
{
label: "Chainsaws",
href: "/services",
},
{
label: "Blowers",
href: "/services",
},
],
},
]}
logoText="Walden Ridge"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Walden Ridge"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Lawn Mowers", href: "/services" }, { label: "Chainsaws", href: "/services" }, { label: "Blowers", href: "/services" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}