Update src/app/layout.tsx

This commit is contained in:
2026-03-11 13:34:30 +00:00
parent 378750c3cc
commit ab2c2ca270

View File

@@ -1,28 +1,50 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "KAYURA - Premium Systemic & Topical Skincare",
description: "Concern-driven skincare combining clinically-validated topicals with systemic supplements. Multi-taxonomy navigation, personalized quizzes, and science-backed formulations for visible results.",
keywords: "skincare, premium beauty, concern-driven, systemic skincare, topical serum, acne treatment, anti-aging, hyperpigmentation, hydration, eye care, skincare quiz",
openGraph: {
title: "KAYURA - Premium Systemic & Topical Skincare",
description: "Discover your perfect skincare routine with concern-driven formulations backed by clinical research.",
url: "https://kayura.com",
siteName: "KAYURA",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-selfcare-routine-products_23-2149291868.jpg",
alt: "KAYURA Premium Night Balm",
},
],
},
twitter: {
card: "summary_large_image",
title: "KAYURA - Premium Skincare",
description: "Concern-driven beauty. Clinically-validated. Results-focused.",
images: ["http://img.b2bpic.net/free-photo/close-up-selfcare-routine-products_23-2149291868.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +53,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +67,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}