Update src/app/layout.tsx

This commit is contained in:
2026-03-11 13:07:08 +00:00
parent 95032e8eef
commit 28f95445e7

View File

@@ -1,24 +1,57 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Source_Sans_3 } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ShopHub - Everything You Need, One Click Away",
description: "Shop electronics, fashion, beauty, home essentials & accessories. Quality products, fast shipping, and trusted by millions. Browse exclusive deals today!",
keywords: "online shopping, electronics, fashion, beauty, home essentials, accessories, e-commerce, deals",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "ShopHub - Your Trusted Shopping Destination",
description: "Discover quality products across five categories. Exclusive deals, fast shipping, and exceptional customer service.",
url: "https://shophub.com",
siteName: "ShopHub",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/two-indians-mans-customer-buyer-mobile-phone-making-selfie-by-monopod-stick-south-asian-peoples-technologies-concept-cellphone-shop_627829-1266.jpg",
alt: "ShopHub Featured Products",
},
],
},
twitter: {
card: "summary_large_image",
title: "ShopHub - Everything You Need",
description: "Shop quality products across electronics, fashion, beauty, home essentials & accessories.",
images: ["http://img.b2bpic.net/free-photo/two-indians-mans-customer-buyer-mobile-phone-making-selfie-by-monopod-stick-south-asian-peoples-technologies-concept-cellphone-shop_627829-1266.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +60,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +74,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}