Files
8b15e49e-3b49-4cd3-8e89-9ac…/src/app/layout.tsx
2026-05-13 16:09:43 +00:00

52 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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: 'Lamina Venue | Tropical Luxury Event Space',
description: 'Where Memories and Celebrations Come Alive. Book your tropical oasis for weddings, birthdays, and reunions.',
openGraph: {
"title": "Lamina Venue",
"description": "Tropical luxury event venue with pool access and sunset views.",
"siteName": "Lamina 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>
);
}