From e01c84d614ec02bbfa8ce2f2a893707eb7db2166 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 19:56:42 +0000 Subject: [PATCH] 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 1d78143..5fa80ef 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ + variable: "--font-source-sans-3", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -30,7 +35,7 @@ export default function RootLayout({ return ( - + {children}