From bd5e1d56b62a7522dd735204d765d54b4d331aa6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:11:16 +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 16b505f..9c4e69e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Instrument_Sans } from "next/font/google"; +import { Figtree } from "next/font/google"; const outfit = Outfit({ variable: "--font-outfit", subsets: ["latin"], @@ -36,6 +37,11 @@ const outfit = Outfit({ subsets: ["latin"], }); +const figtree = Figtree({ + variable: "--font-figtree", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -44,7 +50,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 5d67b3dd4625492b443fb17b916fd3cea98e6914 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:11:16 +0000 Subject: [PATCH 2/2] Update theme fonts -- 2.49.1