diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dfb76d2..e41e268 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,16 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Fern's HVAC - Winnipeg's Trusted Heating & Air Conditioning Service", - description: "Professional HVAC repair, maintenance, and installation in Winnipeg, MB. 180+ five-star reviews. 24/7 emergency service. Call (204) 255-2233 today.", - keywords: "HVAC Winnipeg, furnace repair, air conditioning, heating service, 24/7 emergency HVAC, Manitoba", - metadataBase: new URL("https://fernshavc.com"), - alternates: { - canonical: "https://fernshavc.com", - }, - openGraph: { - title: "Fern's HVAC - Winnipeg Heating & Cooling Experts", - description: "Trusted HVAC services with 180+ reviews. Furnace repair, AC installation, maintenance & 24/7 emergency support.", - url: "https://fernshavc.com", - siteName: "Fern's HVAC", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg", - alt: "Fern's HVAC Professional Service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Fern's HVAC - Winnipeg Heating & Air Conditioning", - description: "Professional HVAC service with 180+ five-star reviews. Available 24/7.", - images: ["http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Fern's HVAC - Winnipeg Heating & Air Conditioning", description: "Professional HVAC services in Winnipeg with 180+ five-star reviews. Quality workmanship, honest pricing, and 24/7 emergency service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}