Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-03 19:22:42 +00:00

View File

@@ -1,56 +1,22 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "HVAC, Plumbing & Electrical Services - Carolina Cool", description: "Expert HVAC, plumbing, and electrical services for residential and commercial properties. 24/7 emergency service. Fast, friendly, licensed professionals. Serving Grand Strand since 1985.", keywords: "HVAC repair, air conditioning, heating, plumbing services, electrical repair, emergency HVAC, Surfside Beach, Conway, Georgetown", openGraph: {
title: "Carolina Cool - HVAC, Plumbing & Electrical Services", description: "Fast, reliable home and business services. 24/7 emergency availability. Free estimates.", siteName: "Carolina Cool", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg", alt: "Professional HVAC technician"
}
]
},
twitter: {
card: "summary_large_image", title: "Carolina Cool - Expert HVAC, Plumbing & Electrical Services", description: "24/7 emergency service. Licensed & insured. Serving Grand Strand since 1985.", images: ["http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Carolina Cool - HVAC, Plumbing & Electrical Services", description: "Expert HVAC, plumbing, and electrical services for the Grand Strand since 1985. 24/7 emergency service available."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${poppins.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}