Files
dda57ea7-e2dd-40b5-86ca-dff…/src/app/layout.tsx
2026-05-25 07:31:00 +00:00

49 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 { Mulish } from "next/font/google";
export const metadata: Metadata = {
title: 'Cherry On Top | Best Cafe in Baku',
description: 'Cherry On Top - the perfect place for coffee, fresh pastries, and a cozy atmosphere in the heart of Baku.',
openGraph: {
"title": "Cherry On Top | Best Cafe in Baku",
"description": "Experience our signature coffee and hand-crafted pastries.",
"siteName": "Cherry On Top"
},
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}