From edb5da5dd523e4e0719801edcf452bdb85834b60 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 11:05:33 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 54c5043..d4a6a07 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 { Source_Sans_3 } from "next/font/google"; +import { Playfair_Display } from "next/font/google"; @@ -19,9 +20,10 @@ export const metadata: Metadata = { }, }; -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], + +const playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -32,7 +34,7 @@ export default function RootLayout({ return ( - + {children}