From fcb733572b03126917db2266bf4db6b149a2bec4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 21:19:04 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6bc4082..3255bd0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,23 @@ 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 { Poppins } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const poppins = Poppins({ + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Luminé | Premium Natural Skincare | Pure Beauty", description: "Discover Luminé skincare: clinically-tested, nature-inspired formulas with organic ingredients. Award-winning skincare for radiant, healthy skin. Shop our collection today.", keywords: "natural skincare, organic beauty products, premium skincare, cruelty-free cosmetics, dermatologist-tested, anti-aging serum, facial care", metadataBase: new URL("https://luminebeauty.com"), - alternates: { - canonical: "https://luminebeauty.com"}, - openGraph: { - title: "Luminé | Premium Natural Skincare", description: "Experience radiant skin with Luminé's scientifically-formulated, nature-inspired skincare collection. 100% natural, cruelty-free, and dermatologist-approved.", url: "https://luminebeauty.com", siteName: "Luminé", images: [ - { - url: "http://img.b2bpic.net/free-photo/spa-composition-with-wellness-items-body-care_169016-5849.jpg", alt: "Luminé Premium Skincare Collection"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Luminé | Premium Natural Skincare", description: "Discover award-winning skincare with nature-inspired formulas. 100% organic, cruelty-free, clinically-tested.", images: ["http://img.b2bpic.net/free-photo/spa-composition-with-wellness-items-body-care_169016-5849.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luminé - Premium Skincare", description: "Discover premium, nature-inspired skincare for radiant, healthy skin."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}