Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 87d1b3b8d4 | |||
| d4629f4ebf | |||
| 53a250c0d1 | |||
| 1fbeca6c08 | |||
| 5e4f79e10e | |||
| f8be2a4d5b |
@@ -1,44 +1,15 @@
|
|||||||
import type { Metadata } from "next";
|
export const metadata = {
|
||||||
import { Poppins } from "next/font/google";
|
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."
|
||||||
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 default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>{children}
|
||||||
<body
|
|
||||||
className={`${poppins.variable} ${raleway.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1406,7 +1377,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ export default function LandingPage() {
|
|||||||
tag="Ready for Premium HVAC Service?"
|
tag="Ready for Premium HVAC Service?"
|
||||||
tagIcon={Phone}
|
tagIcon={Phone}
|
||||||
title="Schedule Your Service or Get Your Free Estimate Today"
|
title="Schedule Your Service or Get Your Free Estimate Today"
|
||||||
description="Contact us now to schedule professional service or receive a comprehensive free estimate. Our expert team is ready to solve your heating and cooling needs with premium, reliable service."
|
description="Don't let HVAC emergencies wait. Contact us now for same-day service availability or your free estimate today."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call (864) 213-9899", href: "tel:(864)213-9899" },
|
{ text: "Call (864) 213-9899", href: "tel:(864)213-9899" },
|
||||||
{ text: "Schedule Online", href: "#contact-form" }
|
{ text: "Schedule Online", href: "#contact-form" }
|
||||||
|
|||||||
Reference in New Issue
Block a user