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 (
-
-