From 9f7ab9be79e0412e89e31d7aae8788ab0e91588f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:36:25 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 35 +++++++++++++++-------------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4dd2879..b0130c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,38 +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({ @@ -44,7 +39,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 3e449a865e2791f6a4483609d048ecb338b79e18 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:36:26 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0d21453..1cb2584 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,9 +1,28 @@ "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