5 Commits

Author SHA1 Message Date
5a347cdc1d Update src/app/page.tsx 2026-03-04 21:02:33 +00:00
3276a7ac45 Merge version_2 into main
Merge version_2 into main
2026-03-04 20:55:17 +00:00
73b6e65195 Update src/app/page.tsx 2026-03-04 20:55:07 +00:00
f51babbded Update src/app/layout.tsx 2026-03-04 20:55:07 +00:00
80d1503591 Merge version_1 into main
Merge version_1 into main
2026-03-04 20:53:24 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}