diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index fb7c4c3..349a3e5 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -84,7 +84,7 @@ export default function AboutPage() { role: "CEO & Entrepreneur", company: "Morrison Enterprises", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-brunette-male-leaning-cliffs-sunlight_181624-38282.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-brunette-male-leaning-cliffs-sunlight_181624-38282.jpg?_wi=3", imageAlt: "Alexander Morrison", }, { @@ -93,7 +93,7 @@ export default function AboutPage() { role: "Fashion Designer", company: "Richardson Atelier", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelmodern-man-dressed-white-shirt-fashion-male-posing-street-background-sunglasses-outdoors-sunset_158538-20616.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelmodern-man-dressed-white-shirt-fashion-male-posing-street-background-sunglasses-outdoors-sunset_158538-20616.jpg?_wi=3", imageAlt: "James Richardson", }, { @@ -102,7 +102,7 @@ export default function AboutPage() { role: "Investment Manager", company: "Sterling Capital", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/shirtless-handsome-male-with-perfect-muscular-body-posing-while-leaning-chair-studio_613910-4277.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/shirtless-handsome-male-with-perfect-muscular-body-posing-while-leaning-chair-studio_613910-4277.jpg?_wi=3", imageAlt: "Michael Sterling", }, { @@ -111,7 +111,7 @@ export default function AboutPage() { role: "Luxury Consultant", company: "Ashford & Co", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-brunette-man-coat-thoughtfully-looking-away-outdoor_574295-2786.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-brunette-man-coat-thoughtfully-looking-away-outdoor_574295-2786.jpg?_wi=2", imageAlt: "David Ashford", }, ]} diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index d1c2f64..48a9b70 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -25,7 +25,7 @@ const defaultCartItems: CartItem[] = [ quantity: 1, size: "M", color: "Beige", - imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-black-shirt-black-suit_158595-4808.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-black-shirt-black-suit_158595-4808.jpg?_wi=4", }, { id: "2", @@ -34,7 +34,7 @@ const defaultCartItems: CartItem[] = [ quantity: 2, size: "L", color: "White", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-man-model-wearing-white-clothes-posing-near-rocks-beach_158538-2337.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-man-model-wearing-white-clothes-posing-near-rocks-beach_158538-2337.jpg?_wi=4", }, ]; diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 2d0934d..3e91451 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -56,7 +56,7 @@ export default function CheckoutPage() { id: "1", name: "Classic Beige Linen Shirt", price: "$189.00", - imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-black-shirt-black-suit_158595-4808.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-black-shirt-black-suit_158595-4808.jpg?_wi=5", imageAlt: "Classic beige linen shirt", initialQuantity: 1, }, @@ -64,7 +64,7 @@ export default function CheckoutPage() { id: "2", name: "Premium White Linen Shirt", price: "$195.00", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-man-model-wearing-white-clothes-posing-near-rocks-beach_158538-2337.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-man-model-wearing-white-clothes-posing-near-rocks-beach_158538-2337.jpg?_wi=5", imageAlt: "Premium white linen shirt", initialQuantity: 1, }, @@ -72,7 +72,7 @@ export default function CheckoutPage() { id: "3", name: "Luxe Navy Linen Shirt", price: "$199.00", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-groom-buttoning-his-shirt_1153-444.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-groom-buttoning-his-shirt_1153-444.jpg?_wi=4", imageAlt: "Luxury navy linen shirt", initialQuantity: 1, }, @@ -80,7 +80,7 @@ export default function CheckoutPage() { id: "4", name: "Sophisticated Charcoal Linen", price: "$189.00", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-best-man_23-2149044031.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-best-man_23-2149044031.jpg?_wi=4", imageAlt: "Sophisticated charcoal linen shirt", initialQuantity: 1, }, 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}