From 17ae3444acad0776496df089ae1e6fd5ca512651 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:53:51 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 59 +++++++--------------------------------------- 1 file changed, 9 insertions(+), 50 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83f797e..5c38af9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,20 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Summit Shield Roofing - Jacksonville's Trusted Roofing Experts | Free Inspections", - description: "Professional roofing services in Jacksonville, FL. Roof repair, replacement, and storm damage restoration. Licensed & insured. 10+ years experience. Free inspections. 24/7 emergency service.", - keywords: "roofing Jacksonville, roof repair, roof replacement, storm damage repair, commercial roofing, licensed roofer, roof inspection", - metadataBase: new URL("https://summitshieldroofing.com"), - alternates: { - canonical: "https://summitshieldroofing.com", - }, - openGraph: { - title: "Summit Shield Roofing - Jacksonville's Trusted Roofing Experts", - description: "Professional roofing services with 10+ years experience. Free roof inspections. Licensed & insured. 24/7 emergency service.", - url: "https://summitshieldroofing.com", - siteName: "Summit Shield Roofing", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Summit Shield Roofing - Jacksonville's Trusted Roofing Experts", - description: "Professional roofing services in Jacksonville. Repair, replacement, storm damage. Free inspections. Licensed & insured.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Summit Shield Roofing", description: "Jacksonville's trusted roofing experts. Professional residential & commercial roofing services. Free inspections, 24/7 emergency service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +