From f2516662f7da4cabf1da82fc9090ef13ae08589a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 03:27:49 +0000 Subject: [PATCH 1/4] Update theme fonts --- src/app/layout.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9282c50..086ab42 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 { Lato } from "next/font/google"; +import { Open_Sans } from "next/font/google"; @@ -15,9 +16,14 @@ export const metadata: Metadata = { description: "Generated by create next app", }; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], }); export default function RootLayout({ @@ -28,7 +34,7 @@ export default function RootLayout({ return ( - + {children}