From 66600949d1789f5c679eb44ac7b2cc1a29b88926 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 02:25:34 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 41 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..a99a30b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,55 @@ 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: "Luxe Collections - Premium Perfumes, Clothing & Jewelry", + description: "Discover luxury perfumes, designer clothing, and fine jewelry at Luxe Collections. Premium quality with timeless elegance.", + keywords: "luxury perfumes, designer clothing, fine jewelry, premium fragrances, luxury fashion, exclusive accessories", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Luxe Collections - Premium Shopping Experience", + description: "Curated collections of luxury perfumes, clothing, and jewelry.", + type: "website", + siteName: "Luxe Collections", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19868.jpg", + alt: "Luxe Collections", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Luxe Collections", + description: "Discover premium perfumes, clothing, and jewelry.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +58,9 @@ export default function RootLayout({ return ( - + {children}