Update src/app/page.tsx
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
@@ -8,8 +8,8 @@ import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Zap, Wrench, Award, TrendingUp, MessageSquare, Phone } from "lucide-react";
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Zap, Wrench, Award, TrendingUp, MessageSquare, Phone, Mail, MapPin, Clock } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -180,12 +180,38 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
<FooterBaseCard
|
||||
logoText="Rosebush"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Contact", href: "tel:(613)967-0768" }}
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "HVAC Repair", href: "#services" },
|
||||
{ label: "AC Installation", href: "#services" },
|
||||
{ label: "Furnace Service", href: "#services" },
|
||||
{ label: "Maintenance Plans", href: "#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Reviews", href: "#testimonials" },
|
||||
{ label: "Our Team", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact Info", items: [
|
||||
{ label: "(613) 967-0768", href: "tel:(613)967-0768" },
|
||||
{ label: "Belleville, Ontario", href: "#" },
|
||||
{ label: "24/7 Emergency", href: "tel:(613)967-0768" },
|
||||
{ label: "info@rosebush.ca", href: "mailto:info@rosebush.ca" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Rosebush HVAC Services. All rights reserved."
|
||||
onPrivacyClick={() => console.log('Privacy clicked')}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user