From 8035f44b686a5847a83d50f2939304fb49b369b1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 09:15:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 +++++--------------------------------------- 1 file changed, 5 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ac75f1f..2d20c8c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,16 @@ 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: "ResellHub - Premium Wholesale Marketplace for Resellers", description: "Access exclusive supplier bundles and curated products for wholesale resellers. Scale your e-commerce business with our trusted wholesale platform.", keywords: "wholesale, reseller, supplier, bulk orders, e-commerce, dropshipping, marketplace", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "ResellHub - Premium Wholesale Marketplace", description: "Join 4,950+ successful resellers. Access exclusive supplier bundles and wholesale products.", siteName: "ResellHub", type: "website"}, - twitter: { - card: "summary_large_image", title: "ResellHub - Premium Wholesale Marketplace", description: "Discover exclusive supplier bundles and wholesale products for resellers"}, -}; + title: "ResellHub - Premium Wholesale Marketplace", description: "Access exclusive supplier bundles and products curated for resellers"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}