From e35c12cd5928be797f1a613fdeea4ef2c779f7c3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 08:45:02 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 453b3f9..4732acf 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 { Inter_Tight } from "next/font/google"; +import { Public_Sans } from "next/font/google"; @@ -20,7 +21,11 @@ export const metadata: Metadata = { }, }; -const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); + +const publicSans = Public_Sans({ + variable: "--font-public-sans", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -30,7 +35,7 @@ export default function RootLayout({ return ( - + {children}