114 lines
2.5 KiB
TypeScript
114 lines
2.5 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
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";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
>
|
|
<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="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="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>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|