From 218bffba96bf4fa7a2768ac8e59953145f0ef6af Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 02:19:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1422 -------------------------------------------- 1 file changed, 1422 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b0f2f5c..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Professional Roofing & Remodeling Services | Loja Construction", description: "Expert roofing installation, repair, and home remodeling services for residential and commercial properties. Free inspections and quotes available.", keywords: "roofing services, roof installation, roof repair, home remodeling, contractor, professional roofer", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Professional Roofing & Remodeling | Loja Construction", description: "Expert roofing and remodeling services with over 20 years of experience. Free quote available today.", siteName: "Loja Construction & Remodeling", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-men-working-roof-together_23-2149343670.jpg", alt: "Professional roofing services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional Roofing & Remodeling | Loja Construction", description: "Expert roofing and remodeling services. Free inspections and competitive quotes.", images: ["http://img.b2bpic.net/free-photo/medium-shot-men-working-roof-together_23-2149343670.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -