From 404ba4007663d390bf352b7daebbb93f342c0850 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 11:41:21 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e7dd8b4..47fa976 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito } from "next/font/google"; +import { MedievalSharp } from "next/font/google"; @@ -21,10 +22,8 @@ export const metadata: Metadata = { }, }; -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); + +const gothicFont = MedievalSharp({ variable: "--font-gothic", subsets: ["latin"], weight: ["400"] }); export default function RootLayout({ children, @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children}