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 ( {children}