From ae0b0da4fa94134a1f8940470ce75a7e578ce3e2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 05:49:25 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6f8449d..1c2cc97 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 { Playfair_Display, Lato } from "next/font/google"; +import { Montserrat } from "next/font/google"; @@ -20,8 +21,15 @@ export const metadata: Metadata = { }, }; -const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] }); -const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["400", "700"] }); + +const montserrat = Montserrat({ + variable: "--font-montserrat", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -31,7 +39,7 @@ export default function RootLayout({ return ( - + {children}