From de9dd977f58b58a96581802cbf8b48ac2bc28b77 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 17:00:38 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f733a8e..9a979b2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,13 +7,19 @@ 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"; 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", + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], }); @@ -25,7 +31,7 @@ export default function RootLayout({ return ( - + {children}