Update src/app/layout.tsx

This commit is contained in:
2026-03-19 23:13:02 +00:00
parent af16252fe9
commit 30b923cbf5

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 { Poppins } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins",
@@ -20,6 +24,37 @@ const poppins = Poppins({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "LUXURY NOTES - Premium Fragrances | The Scent of Who You Are",
description: "Discover luxury fragrances crafted by master perfumers. LUXURY NOTES offers premium perfumes for him, her, and unisex collections. Experience elegance in every spray.",
keywords: "luxury perfume, fragrance, oud, eau de parfum, premium scents, designer fragrance, Erbil",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "LUXURY NOTES - Premium Luxury Fragrances",
description: "Elevate your scent with LUXURY NOTES. Discover signature fragrances crafted with rare essences and timeless elegance.",
type: "website",
siteName: "LUXURY NOTES",
url: "https://luxurynotes.com",
images: [
{
url: "http://img.b2bpic.net/free-vector/mist-spray-cosmetic-bottle-ad-banner_107791-3010.jpg",
alt: "LUXURY NOTES luxury fragrance collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "LUXURY NOTES - Premium Fragrances",
description: "The scent of who you are. Discover luxury fragrance collections.",
images: [
"http://img.b2bpic.net/free-vector/mist-spray-cosmetic-bottle-ad-banner_107791-3010.jpg",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +63,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}