From 852f8febdb98a63d64f738386c495eaed51840e1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:33:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 +++++++++++++------------------------------- 1 file changed, 13 insertions(+), 31 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b3181a..4a305c4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Salem Plumbing & HVAC | 24/7 Emergency Service", description: "Licensed plumber and HVAC contractor in Salem, Oregon. 18+ years trusted service. Emergency repairs, maintenance, and installations 24/7.", keywords: "plumbing salem oregon, HVAC repair salem, emergency plumber, water heater repair, furnace repair, drain cleaning", robots: { - index: true, - follow: true, - }, -}; + title: "Salem Plumbing & HVAC", description: "Professional plumbing and HVAC services in Salem, Oregon"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +