Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 117e132bc4 | |||
| f27998d13f | |||
| 65d25bf501 |
@@ -1,47 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Heating & Cooling Services Belleville | Rosebush HVAC", description: "Professional HVAC repair, installation, and maintenance in Belleville, Ontario. 24/7 emergency service, honest pricing, certified technicians. Call (613) 967-0768.", keywords: "HVAC Belleville, furnace repair, air conditioning installation, heating cooling services, emergency HVAC", openGraph: {
|
title: "Rosebush HVAC Services - Belleville", description: "Professional heating and cooling solutions in Belleville, Ontario. 24/7 emergency service, expert technicians, and honest pricing."};
|
||||||
title: "Rosebush Heating & Cooling | Belleville HVAC Services", description: "Reliable heating and cooling solutions for Belleville homes and businesses. Expert technicians, 20+ years experience.", siteName: "Rosebush Heating & Cooling Ltd", type: "website"},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${inter.variable} font-sans`}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1409,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
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 MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import { Zap, Wrench, Award, TrendingUp, MessageSquare, Phone } from "lucide-react";
|
import { Zap, Wrench, Award, TrendingUp, MessageSquare, Phone, Mail, MapPin, Clock } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -180,12 +180,38 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterBaseCard
|
||||||
logoText="Rosebush"
|
logoText="Rosebush"
|
||||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
columns={[
|
||||||
rightLink={{ text: "Contact", href: "tel:(613)967-0768" }}
|
{
|
||||||
|
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>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user