52 lines
1.5 KiB
TypeScript
52 lines
1.5 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";
|
||
import { Great_Vibes } from "next/font/google";
|
||
|
||
|
||
|
||
export const metadata: Metadata = {
|
||
title: 'La’mina Venue | Tropical Luxury Event Space',
|
||
description: 'Where Memories and Celebrations Come Alive. Book your tropical oasis for weddings, birthdays, and reunions.',
|
||
openGraph: {
|
||
"title": "La’mina Venue",
|
||
"description": "Tropical luxury event venue with pool access and sunset views.",
|
||
"siteName": "La’mina Venue",
|
||
"type": "website"
|
||
},
|
||
};
|
||
|
||
|
||
|
||
const greatVibes = Great_Vibes({ variable: "--font-great-vibes", subsets: ["latin"], weight: ["400"] });
|
||
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html lang="en" suppressHydrationWarning>
|
||
<ServiceWrapper>
|
||
<body className={`${greatVibes.variable} ${inter.variable} antialiased`}>
|
||
<Tag />
|
||
{children}
|
||
<script
|
||
dangerouslySetInnerHTML={{
|
||
__html: `${getVisualEditScript()}`
|
||
}}
|
||
/>
|
||
</body>
|
||
</ServiceWrapper>
|
||
</html>
|
||
);
|
||
}
|