Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f6f6a1e1be | |||
| 5a347cdc1d | |||
| 3276a7ac45 | |||
| 73b6e65195 | |||
| f51babbded | |||
| 80d1503591 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user