From ced5502ed2bae11fa6a171ce915b3e3f100f9401 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 17 May 2026 20:48:40 +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 ab6c1c2..c013c6c 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 { Mulish } from "next/font/google"; +import { Playfair_Display } from "next/font/google"; @@ -21,10 +22,8 @@ export const metadata: Metadata = { }, }; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); + +const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] }); export default function RootLayout({ children, @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children}