Update src/app/layout.tsx

This commit is contained in:
2026-03-21 07:39:20 +00:00
parent bca775dd0a
commit 376133f88a

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } 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 { Roboto } 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 roboto = Roboto({
variable: "--font-roboto",
@@ -20,6 +24,41 @@ const roboto = Roboto({
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = {
title: "ShopHub - E-Commerce Platform for Electronics, Fashion & Home",
description: "Shop thousands of products across electronics, fashion, home & living. Secure checkout, fast delivery, 30-day returns. Join 500K+ happy customers on ShopHub.",
keywords: "e-commerce, online shopping, electronics, fashion, home decor, buy online, fast shipping, secure payment",
metadataBase: new URL("https://shophub.example.com"),
alternates: {
canonical: "https://shophub.example.com",
},
openGraph: {
title: "ShopHub - Your Ultimate E-Commerce Platform",
description: "Discover thousands of quality products with fast shipping and secure checkout. Shop electronics, fashion, home & living today.",
url: "https://shophub.example.com",
siteName: "ShopHub",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_1203-7945.jpg",
alt: "ShopHub e-commerce platform showcase",
},
],
},
twitter: {
card: "summary_large_image",
title: "ShopHub - Shop Everything Online",
description: "Your trusted e-commerce destination for electronics, fashion, and home products. 500K+ customers, fast shipping, secure checkout.",
images: [
"http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_1203-7945.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +67,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +81,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}