diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 679d5d7..cef27d1 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,47 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Montserrat } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- 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"],
-});
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
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 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,
- },
-};
+ title: "Rosebush HVAC Services - Belleville", description: "Professional heating and cooling solutions in Belleville, Ontario. 24/7 emergency service, expert technicians, and honest pricing."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-