From 88569594f3193df50f034d25c878370df7b1a58f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 12:20:50 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ef57809..3229a3d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; export const metadata: Metadata = { @@ -28,10 +29,10 @@ export const metadata: Metadata = { } }; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], - weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", @@ -46,7 +47,7 @@ export default function RootLayout({ return ( - + {children} From b596c9213f93b9159a5cad304c088750e911299e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 12:20:51 +0000 Subject: [PATCH 2/2] Update theme fonts --- src/app/styles/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index efe6053..c719d19 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-libre-baskerville), serif; + font-family: var(--font-dm-sans), sans-serif; }