Update src/app/pricing/page.tsx

This commit is contained in:
2026-05-04 01:19:47 +00:00
parent bd937ac24a
commit 976caa88bd

View File

@@ -5,6 +5,7 @@ import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Instagram } from "lucide-react";
export default function PricingPage() {
return (
@@ -56,13 +57,18 @@ export default function PricingPage() {
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<div className="flex flex-col items-center py-8">
<a href="https://www.instagram.com/cleanscene" target="_blank" rel="noopener noreferrer" aria-label="Follow CleanScene on Instagram" className="mb-4 text-[#0a7039] hover:opacity-80 transition-opacity">
<Instagram size={32} />
</a>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText="CleanScene"
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>