29 Commits

Author SHA1 Message Date
38ecaa488e Update src/app/page.tsx 2026-03-27 22:39:38 +00:00
05cb299ca1 Update src/app/services/page.tsx 2026-03-27 22:39:09 +00:00
e9896bad08 Update src/app/page.tsx 2026-03-27 22:39:08 +00:00
30221b1ef3 Update src/app/how-it-works/page.tsx 2026-03-27 22:39:08 +00:00
f14ba20b60 Update src/app/contact/page.tsx 2026-03-27 22:39:07 +00:00
ff782a6fbc Update src/app/about/page.tsx 2026-03-27 22:39:07 +00:00
723c80731e Merge version_13 into main
Merge version_13 into main
2026-03-27 22:33:54 +00:00
52f0edcff1 Update src/app/services/page.tsx 2026-03-27 22:33:51 +00:00
39b68719bf Update src/app/page.tsx 2026-03-27 22:33:50 +00:00
92b99f6bc1 Update src/app/how-it-works/page.tsx 2026-03-27 22:33:50 +00:00
f63505e56a Update src/app/contact/page.tsx 2026-03-27 22:33:50 +00:00
40c88be044 Update src/app/about/page.tsx 2026-03-27 22:33:49 +00:00
06fedbc92b Merge version_12 into main
Merge version_12 into main
2026-03-27 21:15:40 +00:00
d04954ae83 Update src/app/page.tsx 2026-03-27 21:15:33 +00:00
06b45e5d45 Merge version_11 into main
Merge version_11 into main
2026-03-27 21:00:02 +00:00
2971b93442 Update src/app/services/page.tsx 2026-03-27 20:59:59 +00:00
0fc3aa1290 Update src/app/page.tsx 2026-03-27 20:59:59 +00:00
811d832ef9 Merge version_11 into main
Merge version_11 into main
2026-03-27 20:59:38 +00:00
87105ea4d7 Update src/app/page.tsx 2026-03-27 20:59:35 +00:00
2153b47a17 Update src/app/how-it-works/page.tsx 2026-03-27 20:59:34 +00:00
82b108e7de Merge version_10 into main
Merge version_10 into main
2026-03-27 20:49:12 +00:00
fb264e3a12 Update src/app/how-it-works/page.tsx 2026-03-27 20:49:09 +00:00
4fe08b39ed Merge version_10 into main
Merge version_10 into main
2026-03-27 20:48:46 +00:00
a4eb98e903 Update src/app/services/page.tsx 2026-03-27 20:48:43 +00:00
a39764578f Update src/app/how-it-works/page.tsx 2026-03-27 20:48:42 +00:00
0525d89441 Merge version_9 into main
Merge version_9 into main
2026-03-27 20:45:42 +00:00
c3c5840fc8 Update src/app/page.tsx 2026-03-27 20:45:39 +00:00
68adb506a5 Update src/app/how-it-works/page.tsx 2026-03-27 20:45:38 +00:00
5f09372676 Merge version_8 into main
Merge version_8 into main
2026-03-27 20:19:29 +00:00
5 changed files with 149 additions and 255 deletions

View File

@@ -3,8 +3,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import { MapPin, Users } from "lucide-react";
@@ -24,18 +24,13 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"},
{
name: "Services", id: "/services"},
{
name: "How It Works", id: "/how-it-works"},
{
name: "About", id: "/about"},
{
name: "Contact", id: "/contact"},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Nicks 2 Interlock"
/>
@@ -87,23 +82,16 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterBaseCard
logoText="Nicks 2 Interlock"
copyrightText="© 2025 Nicks 2 Interlock. All rights reserved."
columns={[
{
items: [
{
label: "Home", href: "/"},
{
label: "Services", href: "/services"},
{
label: "Contact", href: "/contact"},
],
},
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ title: "Areas Served", items: [{ label: "Longmont", href: "#" }, { label: "Boulder", href: "#" }, { label: "Denver Metro", href: "#" }] }
]}
logoText="Nicks 2 Interlock Services"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -3,8 +3,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
export default function LandingPage() {
@@ -23,18 +23,13 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"},
{
name: "Services", id: "/services"},
{
name: "How It Works", id: "/how-it-works"},
{
name: "About", id: "/about"},
{
name: "Contact", id: "/contact"},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Nicks 2 Interlock"
/>
@@ -84,23 +79,16 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterBaseCard
logoText="Nicks 2 Interlock"
copyrightText="© 2025 Nicks 2 Interlock. All rights reserved."
columns={[
{
items: [
{
label: "Home", href: "/"},
{
label: "Services", href: "/services"},
{
label: "Contact", href: "/contact"},
],
},
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ title: "Areas Served", items: [{ label: "Longmont", href: "#" }, { label: "Boulder", href: "#" }, { label: "Denver Metro", href: "#" }] }
]}
logoText="Nicks 2 Interlock Services"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -2,12 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Zap, FileCheck, CheckCircle2, Wrench } from "lucide-react";
export default function LandingPage() {
export default function HowItWorksPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -15,98 +15,52 @@ export default function LandingPage() {
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumLarge"
background="grid"
cardStyle="subtle-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
background="floatingGradient"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "/"},
{
name: "Services", id: "/services"},
{
name: "How It Works", id: "/how-it-works"},
{
name: "About", id: "/about"},
{
name: "Contact", id: "/contact"},
]}
brandName="Nicks 2 Interlock"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Nicks 2 Interlock"
/>
</div>
<div id="steps" data-section="steps">
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "p1", name: "Step 1: Requirement", price: "Get Started", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/icon-of-a-legal-document-high-quality-gr-1774639651614-ad88088b.png?_wi=2"},
{
id: "p2", name: "Step 2: Installation", price: "Schedule Today", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/installation-toolset-professional-and-cl-1774639654423-df9c56cd.png"},
{
id: "p3", name: "Step 3: Calibration", price: "Stay Compliant", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/calibration-gauge-precise-and-technical-1774639653315-52e976f6.png"},
{
id: "p4", name: "Step 4: Final Removal", price: "Complete Success", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/success-checkmark-sign-professional-grap-1774639655488-fe8de368.jpg"},
]}
title="Simple 4-Step Process"
description="We make your requirements clear and easy to follow."
/>
</div>
<div id="process" data-section="process">
<TimelineProcessFlow
title="Your Path to Compliance"
description="Our streamlined four-step process is designed to get you back on the road safely and legally, with personalized support every step of the way."
textboxLayout="split"
animationType="blur-reveal"
items={[
{ id: "1", content: "Schedule your installation at our local Longmont facility. We verify your requirements and guide you through the initial appointment preparation.", media: <Zap className="w-12 h-12" />, reverse: false },
{ id: "2", content: "Our certified technicians perform a precision installation tailored to your specific vehicle model, ensuring full compliance and reliable operation.", media: <Wrench className="w-12 h-12" />, reverse: true },
{ id: "3", content: "Get thorough, one-on-one training on device usage, reporting requirements, and helpful tips to make your daily driving experience hassle-free.", media: <FileCheck className="w-12 h-12" />, reverse: false },
{ id: "4", content: "Return for your scheduled monthly calibration services. We provide rapid, accurate data reporting to keep your status compliant without delays.", media: <CheckCircle2 className="w-12 h-12" />, reverse: true },
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Investment"
description="Affordable options tailored to your specific compliance needs."
plans={[
{
id: "s1", badge: "Plan A", price: "$100", subtitle: "Basic", features: [
"Fast install", "Regular checkup"],
buttons: [
{
text: "Sign Up", href: "#"},
],
},
{
id: "s2", badge: "Plan B", price: "$200", subtitle: "Advanced", features: [
"Full documentation", "Priority support"],
buttons: [
{
text: "Sign Up", href: "#"},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home", href: "/"},
{
label: "Services", href: "/services"},
{
label: "Contact", href: "/contact"},
],
},
]}
logoText="Nicks 2 Interlock Services"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Nicks 2 Interlock"
copyrightText="© 2025 Nicks 2 Interlock. All rights reserved."
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }, { label: "Contact", href: "/contact" }] },
{ title: "Areas Served", items: [{ label: "Longmont", href: "#" }, { label: "Boulder", href: "#" }, { label: "Denver Metro", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -3,13 +3,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Award, CheckCircle, Clock, Heart, ShieldCheck, ThumbsUp } from "lucide-react";
import { Award, CheckCircle, Heart, ShieldCheck } from "lucide-react";
export default function LandingPage() {
return (
@@ -27,7 +27,7 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
@@ -45,7 +45,7 @@ export default function LandingPage() {
title="Get Back on the Road Fast with Certified Interlock Services"
description="Professional, reliable ignition interlock services in Longmont and surrounding Colorado areas. We provide personal care to help you move forward."
leftCarouselItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/modern-interlock-device-inside-a-car-das-1774639652262-ff35b505.png", imageAlt: "Professional interlock installation" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/modern-interlock-device-inside-a-car-das-1774639652262-ff35b505.png?_wi=1", imageAlt: "Professional interlock installation" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/technician-checking-interlock-device-in--1774639651814-4a93081c.png?_wi=1", imageAlt: "Certified interlock calibration service" },
]}
rightCarouselItems={[
@@ -57,6 +57,16 @@ export default function LandingPage() {
/>
</div>
<div id="brand-showcase" data-section="brand-showcase">
<SocialProofOne
names={["Smart Start", "Guardian", "LifeSafer"]}
title="Trusted Industry Partners"
description="We work with the most recognized ignition interlock providers in the industry to ensure quality service."
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="why-choose-us" data-section="why-choose-us">
<AboutMetric
useInvertedBackground={true}
@@ -81,14 +91,18 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitText
<FaqBase
title="Answers to Your Questions"
description="Common questions about our services and process."
faqsAnimation="blur-reveal"
textboxLayout="split"
useInvertedBackground={true}
faqs={[
{ id: "f1", title: "What is an ignition interlock device?", content: "It is a breath-test device connected to your vehicle's ignition system." },
{ id: "f2", title: "How often do I need calibration?", content: "Regular calibration is required to ensure accuracy." },
{ id: "f3", title: "Do you offer same-day installation?", content: "In many cases, yes. Please contact us to check availability." },
{ id: "f4", title: "Is the device easy to use?", content: "We provide thorough training to ensure you are comfortable using the device." },
]}
sideTitle="Answers to Your Questions"
faqsAnimation="blur-reveal"
/>
</div>
@@ -106,9 +120,13 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] }]}
<FooterBaseCard
logoText="Nicks 2 Interlock"
copyrightText="© 2025 Nicks 2 Interlock. All rights reserved."
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }, { label: "Contact", href: "/contact" }] },
{ title: "Areas Served", items: [{ label: "Longmont", href: "#" }, { label: "Boulder", href: "#" }, { label: "Denver Metro", href: "#" }] }
]}
/>
</div>
</ReactLenis>

View File

@@ -2,13 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import { FileText, Phone } from "lucide-react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -16,103 +14,51 @@ export default function LandingPage() {
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumLarge"
background="grid"
cardStyle="subtle-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
background="floatingGradient"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "/"},
{
name: "Services", id: "/services"},
{
name: "How It Works", id: "/how-it-works"},
{
name: "About", id: "/about"},
{
name: "Contact", id: "/contact"},
]}
brandName="Nicks 2 Interlock"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Nicks 2 Interlock"
/>
</div>
<div id="services-list" data-section="services-list">
<FeatureCardTwelve
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{
id: "s1", label: "Installation", title: "Fast Installation", items: [
"Certified technicians", "Accurate setup", "Guidance provided"],
},
{
id: "s2", label: "Maintenance", title: "Regular Calibration", items: [
"Required maintenance", "Quick appointments", "Compliance focused"],
},
{
id: "s3", label: "Removal", title: "Safe Removal", items: [
"State compliance checked", "Smooth process", "Documentation help"],
},
]}
title="Professional Interlock Services"
description="Comprehensive care for your interlock device compliance needs."
/>
</div>
<div id="brands" data-section="brands" className="py-20">
<FeatureCardSix
title="Certified Partner Brands"
description="We proudly support and maintain the most trusted ignition interlock devices approved in Colorado."
textboxLayout="split"
useInvertedBackground={false}
features={[
{ id: 1, title: "Lifesafer", description: "High-accuracy ignition interlock devices with reliable technology, trusted by courts nationwide.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/modern-interlock-device-inside-a-car-das-1774639652262-ff35b505.png?_wi=2" },
{ id: 2, title: "Guardian", description: "Advanced, user-friendly interlock units designed for speed and ease of use in any climate.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/technician-checking-interlock-device-in--1774639651814-4a93081c.png" },
{ id: 3, title: "Smart Start", description: "The industry leader in ignition interlock technology, providing durable and compliant solutions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/bright-and-clean-workshop-space-modern-f-1774639652470-f0dc2695.png" }
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Additional Services"
description="We go beyond just installation to ensure your total peace of mind."
features={[
{
title: "Compliance Review", description: "We verify all documentation.", icon: FileText,
mediaItems: [
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/icon-of-a-legal-document-high-quality-gr-1774639651614-ad88088b.png?_wi=1"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/detailed-technical-manual-on-a-clipboard-1774639652630-8adf3acc.png?_wi=2"},
],
},
{
title: "Emergency Support", description: "Quick assistance whenever you need it.", icon: Phone,
mediaItems: [
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/bright-and-clean-workshop-space-modern-f-1774639652470-f0dc2695.png?_wi=2"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXyOrSaZWfuzAUSsqC1adzoZvF/detail-shot-of-diagnostic-tool-plugged-i-1774639652644-abb41512.png?_wi=2"},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home", href: "/"},
{
label: "Services", href: "/services"},
{
label: "Contact", href: "/contact"},
],
},
]}
logoText="Nicks 2 Interlock Services"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Nicks 2 Interlock"
copyrightText="© 2025 Nicks 2 Interlock. All rights reserved."
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }, { label: "Contact", href: "/contact" }] },
{ title: "Areas Served", items: [{ label: "Longmont", href: "#" }, { label: "Boulder", href: "#" }, { label: "Denver Metro", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}