From b78db1009c32cdcac1137f09643ab8241032f0af Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:26:02 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 60 ++++++++++++++++------------------------------ 1 file changed, 21 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b1d0e98..06e5385 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,38 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper"; +import { Tag } from "@/components/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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "HVAC Services Sacramento | BlueForge Climate Solutions", description: "Trusted HVAC services in Sacramento, CA offering honest pricing, quality workmanship, and reliable heating and cooling solutions for homes and businesses.", keywords: "HVAC services Sacramento, heating repair, air conditioning, furnace installation, cooling systems", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "BlueForge Climate Solutions | Professional HVAC Services", description: "Expert heating and cooling services in Sacramento with transparent pricing and 24/7 emergency support.", siteName: "BlueForge Climate Solutions", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-people-wearing-helmets-work_23-2149366667.jpg", alt: "BlueForge HVAC Professional Services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "BlueForge Climate Solutions HVAC Services", description: "Professional heating and air conditioning services in Sacramento, CA", images: [ - "http://img.b2bpic.net/free-photo/medium-shot-people-wearing-helmets-work_23-2149366667.jpg"], - }, -}; + title: "BlueForge Climate Solutions - Professional HVAC Services in Sacramento", description: "Expert heating and air conditioning services in Sacramento, CA. Professional HVAC installation, repair, and maintenance. Licensed technicians. 24/7 emergency service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +