|
|
|
|
@@ -1,44 +1,15 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Poppins } from "next/font/google";
|
|
|
|
|
import { Raleway } 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 raleway = Raleway({
|
|
|
|
|
variable: "--font-raleway", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Professional HVAC Service | Long Heating & Air Conditioning Inc | 24/7 Emergency Service", description: "Expert HVAC repair, installation, and maintenance services across South Carolina and Georgia. Licensed, insured, 24/7 emergency service. AC services, heating, indoor air quality, duct cleaning. Call (864) 213-9899 today.", keywords: "HVAC repair, air conditioning repair, heating services, HVAC installation, emergency HVAC service, AC repair near me, duct cleaning, air quality, Greenville SC, Columbia, Charleston, Savannah, Augusta", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Professional HVAC Service | Long Heating & Air Conditioning Inc", description: "Expert 24/7 HVAC repair, installation, and maintenance. Serving South Carolina and Georgia. Licensed, certified, trusted by thousands of homeowners.", type: "website", siteName: "Long HVAC"},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Professional HVAC Service | Long HVAC", description: "Expert heating and cooling repair, installation, and maintenance. 24/7 emergency service available."},
|
|
|
|
|
export const metadata = {
|
|
|
|
|
title: "Long HVAC - 24/7 Professional HVAC Service", description: "Premium heating and cooling solutions for residential and commercial properties. Expert installation, repair, maintenance, and emergency service across South Carolina and Georgia."
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${poppins.variable} ${raleway.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1406,7 +1377,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|