From adb6ca992996d7f67c7c61a28ce9bad0304b5481 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:29:52 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b7411aa..fa16ac6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito_Sans } from "next/font/google"; +import { Figtree } from "next/font/google"; @@ -14,8 +15,10 @@ export const metadata: Metadata = { description: 'Join Ymnik Chess Club for expert coaching, tournaments, and community. Improve your chess skills with experienced coaches.', }; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], + +const figtree = Figtree({ + variable: "--font-figtree", + subsets: ["latin"], }); export default function RootLayout({ @@ -26,7 +29,7 @@ export default function RootLayout({ return ( - + {children}