diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9a7934f..e00138e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Winnetka AC & Heating Repair | HVAC Service", description: "Local HVAC experts in Winnetka providing fast AC repair, heating repair, and installations. 4.7★ rated • Licensed technicians • Same-day service available. Call (818) 334-6753.", keywords: "Winnetka AC repair, HVAC repair Winnetka, air conditioning repair, heating repair, HVAC service, furnace repair", metadataBase: new URL("https://winnetka-hvac.com"), - alternates: { - canonical: "https://winnetka-hvac.com"}, - openGraph: { - title: "Winnetka Air Conditioning & Heating | Local HVAC Experts", description: "Professional AC and heating repair in Winnetka. Same-day service • Licensed technicians • 4.7★ rated.", url: "https://winnetka-hvac.com", siteName: "Winnetka Air Conditioning & Heating", type: "website"}, - twitter: { - card: "summary_large_image", title: "Winnetka HVAC - Fast AC & Heating Repair", description: "Local HVAC experts providing professional cooling and heating services in Winnetka, CA."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Winnetka HVAC - Fast AC & Heating Repair Services", description: "Professional AC repair, heating repair, and HVAC installation in Winnetka and San Fernando Valley. Licensed technicians, same-day service available."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -