diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c83c074..e3b7b83 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Archivo } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const archivo = Archivo({
- variable: "--font-archivo", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "WholesalePro - Premium Bulk Wholesale Solutions", description: "Connect with trusted wholesale distributors. Access bulk products, competitive pricing, and exceptional customer service. Start growing your business today.", keywords: "wholesale, bulk distributor, B2B supplier, reseller products, bulk pricing, wholesale supplier", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "WholesalePro - Your Wholesale Solution", description: "Premium bulk wholesale solutions for retailers and resellers. Competitive pricing, reliable service.", type: "website", siteName: "WholesalePro", images: [
- {
- url: "http://img.b2bpic.net/free-photo/safety-inspector-consulting-female-logistic-worker-while-completing-form-warehouse-copy-space-front-view-labor-inspection-concept_74855-14261.jpg", alt: "WholesalePro wholesale distribution"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "WholesalePro - Premium Wholesale Solutions", description: "Browse bulk products and connect with trusted wholesale distributors.", images: [
- "http://img.b2bpic.net/free-photo/safety-inspector-consulting-female-logistic-worker-while-completing-form-warehouse-copy-space-front-view-labor-inspection-concept_74855-14261.jpg"],
- },
-};
+ title: "WholesalePro - Bulk Wholesale Solutions", description: "Your trusted partner for bulk wholesale solutions. Connect with premium suppliers and scale your business with confidence."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-