From 2f2d85ce329ef447585e6f95632f87d73cfdf237 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 01:55:24 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4855f24..d9ffe09 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 { Poppins } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -41,14 +42,12 @@ export const metadata: Metadata = { }, }; -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export default function RootLayout({ @@ -59,7 +58,7 @@ export default function RootLayout({ return ( - + {children}