From f51babbded135365d795d9afa785ae3e3c9c0c1f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 20:55:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++++++------------------------------------ 1 file changed, 9 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cdc6e76..8c84e76 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } 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 poppins = Poppins({ + subsets: ["latin"], + weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "K-Beauty Glass Skin Routine | GLOW & GLOW", description: "Discover personalized 10-step K-beauty routines with clinically-proven ingredients like snail mucin and centella. Achieve glass skin with our ingredient-first, education-focused skincare platform.", keywords: "K-beauty, skincare routine, glass skin, snail mucin, centella, Korean skincare, hydration, routine builder", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Transform Your Skin with K-Beauty Routines | GLOW & GLOW", description: "Personalized, ingredient-transparent skincare. Build your perfect 5, 7, or 10-step K-beauty routine today.", type: "website", siteName: "GLOW & GLOW", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-asian-woman-applying-skin-treatment_23-2149455293.jpg", alt: "Luminous glass skin with dewy finish"}, - ], - }, - twitter: { - card: "summary_large_image", title: "K-Beauty Glass Skin Routine | GLOW & GLOW", description: "Discover your personalized K-beauty routine with clinically-proven ingredients.", images: ["http://img.b2bpic.net/free-photo/beautiful-asian-woman-applying-skin-treatment_23-2149455293.jpg"], - }, -}; + title: "GLOW & GLOW - K-Beauty Skincare Routines", description: "Discover personalized K-beauty routines tailored to your skin type. Glass skin starts here with ingredient transparency and clinically-proven formulations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}