Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-03 19:00:31 +00:00
2 changed files with 7 additions and 37 deletions

View File

@@ -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>
);
}

View File

@@ -181,7 +181,7 @@ export default function LandingPage() {
tag="Ready for Premium HVAC Service?"
tagIcon={Phone}
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={[
{ text: "Call (864) 213-9899", href: "tel:(864)213-9899" },
{ text: "Schedule Online", href: "#contact-form" }