From e9d6c411da55d50de5fdb2686cefc014e3c799f7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 09:53:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1409 +------------------------------------------- 1 file changed, 6 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f374ff2..5e2ca57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Roofing Services | Trusted Trade Roofing", description: "Expert residential roofing repair, replacement, and inspection. Transparent pricing, honest communication, and work done right. Get your free estimate today.", keywords: "roofing contractor, roof repair, roof replacement, roof inspection, residential roofing, professional roofer, storm damage repair, licensed roofer", openGraph: { - title: "Professional Roofing You Can Trust | Trusted Trade Roofing", description: "Get honest pricing and expert roofing services. Free inspections and estimates for repairs, replacements, and emergency roofing.", type: "website", siteName: "Trusted Trade Roofing", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-with-helmet-sitting-roof-full-shot_23-2149343712.jpg", alt: "professional roofing installation new home" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Professional Roofing Services | Trusted Trade Roofing", description: "Expert roofing services with transparent pricing. Get your free estimate today.", images: ["http://img.b2bpic.net/free-photo/man-with-helmet-sitting-roof-full-shot_23-2149343712.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Trusted Trade Roofing", description: "Professional roofing services you can trust"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -