Update src/app/layout.tsx

This commit is contained in:
2026-03-04 06:23:07 +00:00
parent 22fc7dc0d9
commit 90f43ddae3

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "GlowAura - Premium Beauty & Skincare Products",
description: "Discover luxury beauty and skincare products for men and women. Premium formulas with natural ingredients. Cruelty-free, dermatologically tested. Shop now.",
keywords: "beauty products, skincare, luxury cosmetics, natural ingredients, women's beauty, men's grooming, anti-acne, skincare routine",
metadataBase: new URL("https://glowaura.com"),
alternates: {
canonical: "https://glowaura.com"
},
openGraph: {
title: "GlowAura - Reveal Your Natural Glow",
description: "Premium beauty and skincare products for confidence. Luxury collection for women and men.",
siteName: "GlowAura",
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: "GlowAura Premium Beauty Collection"
}
]
},
twitter: {
card: "summary_large_image",
title: "GlowAura - Premium Beauty & Skincare",
description: "Luxury beauty products with natural ingredients. Shop women's and men's collections.",
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: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}