From bb0dbf3be5f6b33a28d5c82ab317b4739ce6c7a5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 17:00:29 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2caac2f..f733a8e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,17 @@ 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"; -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 nunito = Nunito({ + variable: "--font-nunito", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +25,7 @@ export default function RootLayout({ return ( - + {children}