From e135562687a1a4a8386a224cb12098c3325d49c5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 07:35:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2787 -------------------------------------------- 1 file changed, 2787 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 87dd4ab..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2787 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "LocalHero Services - Website Rebuild for Local Businesses", description: "Transform your local business with a professional website. LocalHero Services provides complete web solutions for local entrepreneurs. Free consultation available.", keywords: "website design, local business, web development, small business website, digital presence, SEO", metadataBase: new URL("https://localherosservices.com"), - alternates: { - canonical: "https://localherosservices.com"}, - openGraph: { - title: "LocalHero Services - Local Business Website Solutions", description: "Professional website rebuilds for local businesses. Drive more customers online with LocalHero Services.", url: "https://localherosservices.com", siteName: "LocalHero Services", type: "website"}, - twitter: { - card: "summary_large_image", title: "LocalHero Services - Transform Your Local Business", description: "Website solutions designed for local business success."}, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -