Update src/app/layout.tsx

This commit is contained in:
2026-03-17 14:41:23 +00:00
parent 1435388120
commit affb6d9ba8

View File

@@ -1,24 +1,57 @@
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: "Headless Angel - Buy & Sell Luxury Watches | Premium Timepiece Marketplace",
description: "Discover, buy, and sell authentic luxury watches on Headless Angel. Curated collections, expert authentication, secure transactions, and white-glove delivery.",
keywords: "luxury watches, buy watches, sell watches, premium timepieces, watch marketplace, authenticated watches, luxury timepieces",
metadataBase: new URL("https://headlessangel.com"),
alternates: {
canonical: "https://headlessangel.com",
},
openGraph: {
title: "Headless Angel - Luxury Watch Marketplace",
description: "Buy and sell authentic luxury watches with expert authentication and secure transactions.",
url: "https://headlessangel.com",
siteName: "Headless Angel",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-man-checking-time-his-watch-against-black-background_23-2147937487.jpg",
alt: "Luxury Watch Collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "Headless Angel - Premium Luxury Watches",
description: "Explore our curated collection of authentic luxury timepieces.",
images: ["http://img.b2bpic.net/free-photo/young-man-checking-time-his-watch-against-black-background_23-2147937487.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +60,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 +74,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}