From 14cc144c357f33e21ca5693a6dda2c9cbb3fdeed Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 11:20:29 +0000 Subject: [PATCH] Update theme fonts --- 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 f2fccd3..df0214a 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 { Lato } from "next/font/google"; +import { Poppins } from "next/font/google"; @@ -23,10 +24,11 @@ export const metadata: Metadata = { }, }; -const lato = Lato({ - variable: "--font-lato", + +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -37,7 +39,7 @@ export default function RootLayout({ return ( - + {children}