From 5f0fdf243769734278eac4f36076ce39e0c548a1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 19:47:09 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..af30238 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ClimaCom - HVAC Services Sofia | Professional AC Installation & Repair", + description: "Professional air conditioning and HVAC services in Sofia. Expert installation, repair, and maintenance. 4.3★ rated local contractor. Fast response. Free quote. Call 02 943 1134.", + keywords: "HVAC contractor Sofia, air conditioner installation Sofia, AC repair Sofia, heating systems Sofia, climate control services, professional HVAC Sofia", + metadataBase: new URL("https://climacom.bg"), + alternates: { + canonical: "https://climacom.bg", + }, + openGraph: { + title: "ClimaCom - Professional HVAC Services in Sofia", + description: "Get expert air conditioning installation, repair, and maintenance in Sofia. 4.3★ rated. Fast response. Same-day service available.", + url: "https://climacom.bg", + siteName: "ClimaCom", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-male-electrician-installing-holder-ceiling-light_23-2148087646.jpg", + alt: "Professional HVAC installation service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ClimaCom - Professional HVAC Services Sofia", + description: "Expert AC installation, repair & maintenance. 4.3★ rated local contractor.", + images: ["http://img.b2bpic.net/free-photo/serviceman-arriving-help-apprentice_482257-85127.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}