From ebb787f086ba2b795c98b989346c65c1d6b5ed52 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:33:26 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e588213..6258129 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,12 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; -import { Halant } from "next/font/google"; +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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ @@ -49,7 +43,7 @@ export default function RootLayout({ {children} -- 2.49.1