Merge version_1 into main #5
@@ -1,7 +1,7 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Nunito } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
@@ -15,33 +15,28 @@ const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Glowé Skincare - Luxury Skincare Premium 100% Alami", description: "Skincare luxury tanpa bahan kimia keras untuk kulit glowing yang sehat. Dipercaya ribuan wanita di Jakarta & Bali. Formula teruji dermatologi. Garansi uang kembali 30 hari.", keywords: "skincare premium, skincare alami, luxury skincare, skincare Jakarta, skincare Bali, skincare Indonesia, produk kecantikan, perawatan kulit, skincare efektif", metadataBase: new URL("https://glowe-skincare.com"),
|
||||
alternates: {
|
||||
canonical: "https://glowe-skincare.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Glowé Skincare - Kulit Glowing Dimulai dari Sini", description: "Skincare luxury 100% alami dengan formula teruji dermatologi. Dapatkan kulit glowing sehat tanpa bahan kimia berbahaya.", url: "https://glowe-skincare.com", siteName: "Glowé Skincare", type: "website", images: [
|
||||
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é Premium Skincare Collection"
|
||||
}
|
||||
]
|
||||
},
|
||||
url: "/placeholders/placeholder1.webp", alt: "Glowé Skincare Premium Products"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Glowé Skincare - Luxury Skincare Premium", description: "Skincare alami teruji dermatologi untuk kulit glowing. Aman untuk semua jenis kulit.", images: ["/placeholders/placeholder1.webp"]
|
||||
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: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
@@ -49,7 +44,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
@@ -3,8 +3,7 @@
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Glowé Skincare</h1>
|
||||
<p>Skincare premium tanpa bahan kimia keras untuk kulit glowing yang sehat.</p>
|
||||
<p>Welcome to Glowé Skincare</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user