From 3d0c19572c7ce960131460d311fdedb3e8a3a442 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 10:20:28 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..b20191c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Luxury Linen Men's Shirts | Premium Craftsmanship | LUXE LINEN", + description: "Experience premium luxury with LUXE LINEN's exclusive collection of hand-crafted linen shirts. 100% European linen, timeless style, and exceptional quality for the discerning gentleman.", + keywords: "luxury linen shirts, mens premium linen, high quality linen apparel, luxury casual shirts, linen clothing for men, premium menswear", + metadataBase: new URL("https://luxelinen.com"), + alternates: { + canonical: "https://luxelinen.com", + }, + openGraph: { + title: "LUXE LINEN - Premium Luxury Linen Men's Shirts", + description: "Discover the epitome of luxury with our hand-crafted linen shirts for the modern gentleman.", + url: "https://luxelinen.com", + siteName: "LUXE LINEN", + images: [ + { + url: "http://img.b2bpic.net/free-photo/handsome-confident-model-sexy-stylish-man-dressed-white-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-interior-sunny-day-shadow-from-window-sunglasses_158538-23364.jpg", + alt: "LUXE LINEN Premium Linen Shirt Collection", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "LUXE LINEN - Premium Luxury Linen Shirts", + description: "Experience luxury with our exclusive collection of hand-crafted linen shirts.", + images: ["http://img.b2bpic.net/free-photo/handsome-confident-model-sexy-stylish-man-dressed-white-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-interior-sunny-day-shadow-from-window-sunglasses_158538-23364.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}