From 23d8939e5f3389819a510ed0441e6890445f75de Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:35:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 37 +++++++++++++++---------------------- 1 file changed, 15 insertions(+), 22 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b3b5458..b0130c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,40 +1,33 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Glowé Skincare - Produk Kecantikan Luxury 100% Natural", description: "Temukan rangkaian skincare premium Glowé untuk kulit glowing sehat tanpa bahan kimia keras. Formula alami yang terbukti dermatologi untuk perempuan Jakarta & Bali.", keywords: "skincare luxury, produk kecantikan, serum vitamin C, moisturizer natural, perawatan kulit, skincare Indonesia", openGraph: { - title: "Glowé Skincare - Kecantikan Alami Premium", description: "Rasakan transformasi kulit glowing dengan Glowé Skincare. Formula 100% natural, dermatologi tested, dan terbukti hasil.", url: "https://glowe-skincare.com", siteName: "Glowé Skincare", images: [ - { - url: "/placeholders/placeholder1.webp", alt: "Glowé Skincare Premium Products" - }, - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "Glowé Skincare - Luxury Natural Beauty", description: "Temukan produk skincare luxury yang mengubah kulit Anda. 100% natural, dermatologi tested.", images: ["/placeholders/placeholder1.webp"], - }, - robots: { + title: "Glowé - Luxury Skincare Alami untuk Kulit Glowing Sehat", description: "Temukan rangkaian skincare premium Glowé. Diformulasikan khusus untuk wanita Indonesia 25-40 tahun dengan bahan alami tanpa kimia keras. Hasil nyata dalam 14 hari!", keywords: "skincare luxury, produk kecantikan, krim wajah alami, serum vitamin C, toner skincare, masker wajah, kulit glowing, skincare Indonesia, kosmetik premium, perawatan kulit", robots: { index: true, follow: true, }, + openGraph: { + title: "Glowé - Luxury Skincare Alami", description: "Kulit glowing sehat dimulai dengan Glowé. Premium skincare yang diformulasikan khusus untuk wanita Indonesia modern.", siteName: "Glowé Skincare", type: "website", images: [ + { + url: "/placeholders/placeholder1.webp", alt: "Glowé Luxury Skincare Collection"}, + ], + }, + twitter: { + card: "summary_large_image", title: "Glowé - Luxury Skincare Alami", description: "Kulit glowing sehat dimulai di sini. Bergabunglah dengan 50.000+ wanita Indonesia yang telah merasakan transformasi kulit mereka.", images: ["/placeholders/placeholder1.webp"], + }, }; export default function RootLayout({ @@ -46,7 +39,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 8d8d439816d2197e48fbfa8f283cbc1dabbe369e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:35:54 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0d21453..5caa371 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,9 +1,27 @@ "use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + export default function LandingPage() { return ( -
-

Welcome to Glowé Skincare

-
+ +
+
+

Glowé - Luxury Skincare

+

Kulit Glowing Sehat Dimulai di Sini

+
+
+
); } -- 2.49.1