Update src/app/layout.tsx

This commit is contained in:
2026-03-10 21:32:10 +00:00
parent 33363e58e3
commit 6f0211acd8

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "LuxeResale | Premium Curated Products & Authentic Luxury",
description: "Discover authentic luxury products carefully curated for you. Shop premium items with 100% authenticity guarantee, fast shipping, and trusted customer reviews.",
keywords: "luxury resale, authentic products, curated collection, premium goods, designer items, reselling, luxury shopping",
metadataBase: new URL("https://luxeresale.com"),
alternates: {
canonical: "https://luxeresale.com",
},
openGraph: {
title: "LuxeResale | Premium Curated Products",
description: "Authentic luxury products, carefully curated and verified. Shop with confidence.",
url: "https://luxeresale.com",
siteName: "LuxeResale",
images: [
{
url: "http://img.b2bpic.net/free-photo/office-desktop-with-mobile-phone_23-2148166659.jpg",
alt: "Premium curated luxury products",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "LuxeResale | Premium Curated Products",
description: "Authentic luxury products, carefully curated and verified for you.",
images: ["http://img.b2bpic.net/free-photo/office-desktop-with-mobile-phone_23-2148166659.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}