From 08288657c047ba068e8fcaf0c0091c5eb59d637c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 17:24:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1427 +------------------------------------------- 1 file changed, 7 insertions(+), 1420 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b6b9e54..857b7c9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1432 +1,20 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ShopHub - Premium Online Shopping & E-Commerce Platform", - description: "Discover thousands of premium products with fast shipping, secure checkout, and exceptional service. Your trusted online marketplace.", - keywords: "online shopping, ecommerce, products, buy online, retail marketplace, secure shopping", - openGraph: { - title: "ShopHub - Your Premier Online Shopping Destination", - description: "Discover premium products with fast shipping and secure checkout on ShopHub.", - siteName: "ShopHub", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/flat-design-shopping-landing-page-template_23-2149325242.jpg", - alt: "ShopHub online shopping platform" - } - ] - }, - twitter: { - card: "summary_large_image", - title: "ShopHub - Premium Online Shopping", - description: "Shop premium products with fast shipping and secure checkout.", - images: ["http://img.b2bpic.net/free-vector/flat-design-shopping-landing-page-template_23-2149325242.jpg"] - } -}; + title: "ShopHub - Your Premier Online Shopping Destination", description: "Discover thousands of premium products handpicked for quality and value. Fast shipping, secure checkout, and exceptional customer service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -