From affb6d9ba84d039fa46c91aeeec68f5f84d6e021 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 14:41:23 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..bb13ef0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}