From e41d159256fd994d775275ebfe0630245b7b3150 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:01:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2809 -------------------------------------------- 1 file changed, 2809 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 228d517..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2809 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "StoreHub - Find Retail Stores Near You", - description: "Discover thousands of retail stores with detailed information, hours, reviews, and directions. Your ultimate shopping directory platform.", - keywords: "store directory, retail stores, shopping directory, store finder, local retail, shopping center, commerce", - metadataBase: new URL("https://storehub.com"), - alternates: { - canonical: "https://storehub.com", - }, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "StoreHub - Store Directory & Discovery", - description: "Find retail stores, get directions, read reviews, and discover new shopping destinations on StoreHub.", - siteName: "StoreHub", - type: "website", - url: "https://storehub.com", - images: [ - { - url: "http://img.b2bpic.net/free-psd/zero-waste-instagram-stories-template_23-2148476918.jpg", - alt: "StoreHub - Retail Store Directory", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "StoreHub - Store Directory Platform", - description: "Discover local retail stores with comprehensive information and customer reviews.", - images: ["http://img.b2bpic.net/free-psd/zero-waste-instagram-stories-template_23-2148476918.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -