From 16b8fa92d725e21f33d6c740742609dddc1c3cff Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:13:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 61 +++++++++------------------------------------- 1 file changed, 12 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4d05833..d42fb59 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,64 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Playfair_Display } from "next/font/google"; -import { Lora } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const playfairDisplay = Playfair_Display({ - variable: "--font-playfair-display", subsets: ["latin"], - weight: ["400", "500", "600", "700", "800", "900"], -}); - -const lora = Lora({ - variable: "--font-lora", subsets: ["latin"], - weight: ["400", "500", "600", "700"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luminé | Premium Luxury Skincare", description: "Discover Luminé luxury skincare. Handcrafted formulations combining ancient botanical wisdom with modern science for radiant, timeless beauty.", keywords: "luxury skincare, premium beauty products, skincare serum, luxury moisturizer, botanical skincare, anti-aging cream", metadataBase: new URL("https://luminebeauty.com"), - alternates: { - canonical: "https://luminebeauty.com"}, - openGraph: { - title: "Luminé | Premium Luxury Skincare", description: "Experience the intersection of ancient botanical wisdom and modern skincare science.", url: "https://luminebeauty.com", siteName: "Luminé", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-floating-water_23-2150963077.jpg", alt: "luxury skincare product photography luxury"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luminé | Premium Luxury Skincare", description: "Experience the intersection of ancient botanical wisdom and modern skincare science.", images: ["http://img.b2bpic.net/free-photo/close-up-floating-water_23-2150963077.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luminé Beauty | Luxury Skincare", description: "Experience luxury skincare with Luminé's premium botanical formulations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +