From 18e362943a12ebdec6eb1d9d6ed0d1841eb2312d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 06:56:07 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 66a846d..53069ab 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -100,7 +100,7 @@ export default function AboutPage() { icon: Leaf, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12324.jpg" + imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12324.jpg?_wi=2" imageAlt="LuxeBeauty founder and team" mediaAnimation="slide-up" imagePosition="right" -- 2.49.1 From 731b89353219a1f5cdd476aa837c5ec0bea27656 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 06:56:08 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 58265b4..1c7a7be 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -100,7 +100,7 @@ export default function ContactPage() { icon: MapPin, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12324.jpg" + imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12324.jpg?_wi=3" imageAlt="LuxeBeauty customer support team" mediaAnimation="slide-up" imagePosition="right" -- 2.49.1 From 6bbe26445afecfb3e2f74c518adf05fc606737ef Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 06:56:08 +0000 Subject: [PATCH 3/5] 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 0077e1c..3bc43e8 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 { 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: "LuxeBeauty - Premium Organic Cosmetics & Skincare", + description: "Discover luxury cosmetics and skincare products made with organic, cruelty-free ingredients. Shop premium makeup and skincare at LuxeBeauty.", + keywords: "premium cosmetics, organic skincare, cruelty-free makeup, luxury beauty products, natural cosmetics", + metadataBase: new URL("https://luxebeauty.com"), + alternates: { + canonical: "https://luxebeauty.com", + }, + openGraph: { + title: "LuxeBeauty - Premium Organic Cosmetics", + description: "Experience luxury beauty with our organic, cruelty-free cosmetics collection.", + url: "https://luxebeauty.com", + siteName: "LuxeBeauty", + images: [ + { + url: "http://img.b2bpic.net/free-photo/cosmetic-item-with-marijuana-leaves_23-2151336270.jpg", + alt: "LuxeBeauty Premium Cosmetics Collection", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "LuxeBeauty - Premium Organic Cosmetics", + description: "Discover luxury, organic, cruelty-free beauty products.", + images: ["http://img.b2bpic.net/free-photo/cosmetic-item-with-marijuana-leaves_23-2151336270.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}