Update src/app/layout.tsx

This commit is contained in:
2026-03-07 08:07:29 +00:00
parent 96153a4c2d
commit 7518fab2e9

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}