Files
fe8e7910-e0c6-45d4-a1e3-84e…/src/app/layout.tsx
2026-05-25 10:21:56 +00:00

51 lines
1.4 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 { Roboto } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'Lucid Cafe NYC | The Ultimate Coffee Ritual',
description: 'Experience luxury coffee culture at Lucid Cafe, 311 Lexington Ave, NYC. Specialty espresso, brunch, and unforgettable atmosphere.',
openGraph: {
"title": "Lucid Cafe NYC",
"description": "Luxury coffee experience in Midtown Manhattan.",
"siteName": "Lucid Cafe"
},
};
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}