From 53a250c0d1d121d4c6e2efc2a32c928cedd75058 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:00:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d560728..65f1286 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}