From 00fe2414558bc6f51a3624d3e79e121c2579c6c0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 19:47:29 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index aa2ae65..5971348 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Open_Sans } from "next/font/google"; @@ -20,7 +21,15 @@ export const metadata: Metadata = { }, }; -const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -30,7 +39,7 @@ export default function RootLayout({ return ( - + {children}