From 898c91f35b634f2cd38aad2a45586f41099a19fd Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 16:20:31 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9f835a3..a1f63a3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { DM_Sans } from "next/font/google"; import { Figtree } from "next/font/google"; import { Libre_Baskerville } from "next/font/google"; +import { Manrope } from "next/font/google"; @@ -19,13 +20,13 @@ export const metadata: Metadata = { -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", + +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], - weight: ["400", "700"], }); -const inter = Inter({ - variable: "--font-inter", +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -37,7 +38,7 @@ export default function RootLayout({ return ( - + {children}