Files
088ea680-c48a-473c-ba9a-a67…/src/app/layout.tsx
2026-06-03 16:55:57 +00:00

76 lines
2.7 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 { Source_Sans_3 } from "next/font/google";
import { Open_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'AURA MONET | Luxury Events & Experiences in Mojácar',
description: 'Discover AURA MONET, Mojácar\'s premier luxury event organizer. Exclusive beach clubs, villa parties, sunset sessions, and VIP nightlife experiences.',
keywords: ["AURA MONET, luxury events Mojácar, Ibiza luxury events, beach club Mojácar, villa parties Mojácar, sunset experiences Mojácar, VIP nightlife Spain, exclusive events, luxury lifestyle"],
openGraph: {
"title": "AURA MONET | Luxury Events & Experiences in Mojácar",
"description": "Discover AURA MONET, Mojácar's premier luxury event organizer. Exclusive beach clubs, villa parties, sunset sessions, and VIP nightlife experiences.",
"url": "https://auramonet.com",
"siteName": "AURA MONET",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/smiling-young-woman-swimsuit-with-cocktail-hand-sitting-blue-lounge-brunette-girl-relaxing-resort-wearing-black-sunglasses_176532-11520.jpg",
"alt": "AURA MONET luxury event"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "AURA MONET | Luxury Events & Experiences in Mojácar",
"description": "Discover AURA MONET, Mojácar's premier luxury event organizer. Exclusive beach clubs, villa parties, sunset sessions, and VIP nightlife experiences.",
"images": [
"http://img.b2bpic.net/free-photo/smiling-young-woman-swimsuit-with-cocktail-hand-sitting-blue-lounge-brunette-girl-relaxing-resort-wearing-black-sunglasses_176532-11520.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}