Files
87d7f7a0-e3ef-4efa-a69a-b24…/src/app/layout.tsx
2026-04-07 06:52:52 +00:00

50 lines
1.3 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
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: 'Luxx Perfumes | Artisanal Fragrances',
description: 'Experience our collection of artisanal fragrances crafted for the discerning individual.',
openGraph: {
"title": "LUXX PERFUMES",
"description": "Smell Like Luxury, Live Like Royalty",
"siteName": "LUXX PERFUMES",
"type": "website"
},
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}