|
|
|
|
@@ -6,20 +6,27 @@ import "@/lib/gsap-setup";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
|
import { Nunito } from "next/font/google";
|
|
|
|
|
import { Open_Sans } from "next/font/google";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = { title: 'Beshqozon Osh Markazi | The Heart of Real Uzbek Plov', description: 'Experience the authentic taste of Tashkent at Beshqozon. Premium slow-cooked Uzbek plov, rich flavors, and fast service in a warm, traditional atmosphere.', openGraph: { title: 'Beshqozon Osh Markazi | The Heart of Real Uzbek Plov', description: 'Experience the authentic taste of Tashkent at Beshqozon. Premium slow-cooked Uzbek plov, rich flavors, and fast service in a warm, traditional atmosphere.', type: 'website' } };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const manrope = Manrope({
|
|
|
|
|
variable: "--font-manrope",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
@@ -28,9 +35,7 @@ export default function RootLayout({
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
<script
|
|
|
|
|
|