From e751265987b2667d3bcdd4e19792d72fa1bae52d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 19:45:34 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 437934a..20f7375 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -39,7 +39,7 @@ export default function RootLayout({ {children}