From 5256448f8c90c9f538853215a45446324bd39323 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 11:45:42 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd1d3b6..0ca630e 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 { Poppins } from "next/font/google"; +import { Manrope } from "next/font/google"; @@ -19,7 +20,11 @@ export const metadata: Metadata = { }, }; -const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"] }); + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -29,7 +34,7 @@ export default function RootLayout({ return ( - + {children}