Merge version_1 into main #6
@@ -1,38 +1,34 @@
|
||||
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 +40,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
@@ -1,9 +1,27 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<div>
|
||||
<p>Welcome to Glowé Skincare</p>
|
||||
</div>
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLarge"
|
||||
background="blurBottom"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div className="min-h-screen flex items-center justify-center">
|
||||
<div className="text-center">
|
||||
<h1 className="text-4xl font-bold mb-4">Glowé - Luxury Skincare</h1>
|
||||
<p className="text-lg text-gray-600">Kulit Glowing Sehat Dimulai di Sini</p>
|
||||
</div>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user