Update src/app/layout.tsx

This commit is contained in:
2026-03-21 19:50:02 +00:00
parent e95bb6afbd
commit 841d4ddf3a

View File

@@ -1,24 +1,63 @@
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 { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } 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 archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "G&S STORE - India's Premier E-Commerce Marketplace",
description: "Shop from trusted sellers on G&S STORE. Secure payments, fast delivery, and 24/7 support. Become a seller and grow your business today.",
keywords: "ecommerce marketplace, online shopping, buy products online, sell online, trusted sellers, India marketplace",
metadataBase: new URL("https://gsstore.com"),
alternates: {
canonical: "https://gsstore.com",
},
openGraph: {
title: "G&S STORE - Premium E-Commerce Marketplace",
description: "Your trusted platform for shopping and selling. Verified sellers, secure payments, and exceptional service.",
url: "https://gsstore.com",
siteName: "G&S STORE",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/a-vibrant-e-commerce-marketplace-hero-im-1774122543120-c3cab3f2.png",
alt: "G&S STORE Marketplace",
},
],
},
twitter: {
card: "summary_large_image",
title: "G&S STORE - Premium E-Commerce",
description: "Shop trusted sellers. Sell your products. Join India's growing marketplace.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGjc69kisfCtqGJv3dfhyzVxvD/a-vibrant-e-commerce-marketplace-hero-im-1774122543120-c3cab3f2.png",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}