From 5364d64298268059740082dd22eea9155cadded5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 12:54:06 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c0edfc8..3147720 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -23,6 +23,7 @@ import { Noto_Sans } from "next/font/google"; import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import { Manrope } from "next/font/google"; +import { Public_Sans } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -141,6 +142,11 @@ const manrope = Manrope({ subsets: ["latin"], }); +const publicSans = Public_Sans({ + variable: "--font-public-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -149,7 +155,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From f6063bb1cc4dbfeb5b47e596e1591a6f7b3f8bdd Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 12:54:07 +0000 Subject: [PATCH 2/2] Update theme fonts -- 2.49.1