4 Commits

Author SHA1 Message Date
8b167bcc97 Update src/app/page.tsx 2026-03-03 05:43:26 +00:00
731a87b278 Update src/app/page.tsx 2026-03-03 05:42:07 +00:00
cfd6f5729e Merge version_1 into main
Merge version_1 into main
2026-03-03 05:36:57 +00:00
945e8d4e6f Merge version_1 into main
Merge version_1 into main
2026-03-03 05:26:35 +00:00

View File

@@ -9,7 +9,7 @@ import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCa
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterCard from "@/components/sections/footer/FooterCard";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, Shield, CheckCircle, Phone, Facebook, Instagram } from "lucide-react";
export default function LandingPage() {
@@ -201,19 +201,23 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterBase
logoText="Jet Cleaning Services"
copyrightText="© 2025 Jet Cleaning Services | 304 Church Street, Penrose, Auckland 1061"
socialLinks={[
columns={[
{
icon: Facebook,
href: "https://facebook.com/jetcleaningauckland", ariaLabel: "Facebook"},
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Contact", href: "#contact" },
],
},
{
icon: Instagram,
href: "https://instagram.com/jetcleaningauckland", ariaLabel: "Instagram"},
{
icon: Phone,
href: "tel:+64-9-302-1536", ariaLabel: "Call Us"},
title: "Legal", items: [
{ label: "Privacy Policy", href: "#privacy" },
{ label: "Terms of Service", href: "#terms" },
],
},
]}
/>
</div>