From ce5691334bbd2db91e15db9f36bda0f72772246c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 16:46:43 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 085105a..a2240d0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Raleway } from "next/font/google"; import { Open_Sans } from "next/font/google"; import { Inter_Tight } from "next/font/google"; +import { Poppins } from "next/font/google"; @@ -25,8 +26,9 @@ export const metadata: Metadata = { -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); @@ -39,7 +41,7 @@ export default function RootLayout({ return ( - + {children}