From 8994b4d62abc90a282357ec42e20903ca7b77026 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 21:42:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7e77e1..990b722 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Raleway } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance. Family-owned and fully insured.", keywords: "roofing, roof repair, roof replacement, Ozarks, Springfield MO, residential roofing, commercial roofing, contractor", openGraph: { - title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance.", type: "website", siteName: "Ozarks Roofing LLC", images: [ - { - url: "http://img.b2bpic.net/free-photo/worker-with-level-building-roof-house_23-2148748855.jpg", alt: "Professional roofing services by Ozarks Roofing LLC" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance.", images: ["http://img.b2bpic.net/free-photo/worker-with-level-building-roof-house_23-2148748855.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Ozarks Roofing LLC | Expert Roofing Solutions", description: "Professional roofing services for Ozarks homes and businesses. Expert installations, repairs, and inspections with 25+ years of trusted service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}