Update src/app/layout.tsx

This commit is contained in:
2026-03-05 04:54:49 +00:00
parent 3640dfa449
commit 2bf6e1bb08

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "BeautyGlow - Premium Natural Skincare Products", description: "Discover premium beauty care products made with natural ingredients. Dermatologist-tested, cruelty-free skincare for every skin type. Shop now and get 20% off your first order.", keywords: "skincare, beauty care products, natural cosmetics, moisturizer, face serum, beauty care, dermatologist tested", openGraph: {
title: "BeautyGlow - Premium Natural Skincare", description: "Transform your skin with our carefully curated collection of premium beauty care products. Natural ingredients, dermatologist-tested, cruelty-free.", siteName: "BeautyGlow", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-fair-skinned-young-women-s-hands-holding-jars-organic-body-creams-care-moisturizing-concept_197531-31493.jpg", alt: "BeautyGlow Premium Beauty Care Products"},
],
},
twitter: {
card: "summary_large_image", title: "BeautyGlow - Premium Natural Skincare", description: "Discover premium beauty care products with natural ingredients", images: ["http://img.b2bpic.net/free-photo/close-up-fair-skinned-young-women-s-hands-holding-jars-organic-body-creams-care-moisturizing-concept_197531-31493.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "BeautyGlow - Premium Beauty Care Products", description: "Discover our carefully curated collection of skincare essentials designed to transform your beauty routine."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}