From c89bfc08c950ecd0711444a39a7a170211c4d477 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 13:28:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1441 +------------------------------------------- 1 file changed, 20 insertions(+), 1421 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 876cbcb..b24d2c6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1437 +1,37 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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/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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +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: "Lavelle Roofing | Fast Response, Honest Pricing, Professional Repairs", - description: "Trusted local roofing specialists. Fast response times, fair quotes, quality repairs. Emergency roof services available 24/7.", - keywords: "roof repair, roofing services, emergency roof repair, flat roof installation, chimney repair, guttering repair, local roofer", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Lavelle Roofing | Reliable Roofing, Honest Pricing, Done Right", - description: "Professional roofing repairs and installation with fast response times and honest pricing. Trusted by homeowners.", - type: "website", - siteName: "Lavelle Roofing", - url: "https://lavilleroofing.com", - images: [ - { - url: "http://img.b2bpic.net/free-photo/worker-with-hard-hat-building-with-wood_23-2148748856.jpg", - alt: "Professional roofing services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Lavelle Roofing | Reliable Roofing, Honest Pricing", - description: "Fast response roofing repairs and installation services.", - images: ["http://img.b2bpic.net/free-photo/worker-with-hard-hat-building-with-wood_23-2148748856.jpg"], - }, -}; + title: "Lavelle Roofing - Trusted Local Roofing Specialists", description: "Professional roofing repairs, installations, and emergency services. 20+ five-star reviews. Fast response, honest pricing, quality workmanship."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +