From 9ab83b922f63f11f4eb4c9ba81e046dc585c9706 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 23:43:01 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cd2b9b4..abca8ed 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Poppins } from "next/font/google"; @@ -21,13 +22,11 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -38,7 +37,7 @@ export default function RootLayout({ return ( - + {children}