Merge version_1 into main #1
@@ -90,7 +90,7 @@ export default function ContactPage() {
|
||||
variant: "plain",
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg?_wi=3"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email or phone number"
|
||||
@@ -142,7 +142,7 @@ export default function ContactPage() {
|
||||
"We provide warranties on all installations and repairs. Ask our team about extended warranty options for complete peace of mind.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/expert-using-pressure-measurement-device_482257-91080.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/expert-using-pressure-measurement-device_482257-91080.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -336,7 +336,7 @@ export default function HomePage() {
|
||||
content: "We provide warranties on all installations and repairs. Ask our team about extended warranty options for complete peace of mind.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/expert-using-pressure-measurement-device_482257-91080.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/expert-using-pressure-measurement-device_482257-91080.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
textboxLayout="default"
|
||||
@@ -356,7 +356,7 @@ export default function HomePage() {
|
||||
tagIcon={Phone}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg?_wi=1"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email or phone number"
|
||||
|
||||
@@ -177,7 +177,7 @@ export default function ServicesPage() {
|
||||
tagIcon={Phone}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg?_wi=2"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email or phone number"
|
||||
|
||||
Reference in New Issue
Block a user