From 8eda3e526f7a8461314ffc3fdc2c9c29ac22f20e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Feb 2026 22:56:41 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42b630c..f4e4af6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,8 +4,6 @@ import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], @@ -36,15 +34,6 @@ export const metadata: Metadata = { } }; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - export default function RootLayout({ children, }: Readonly<{ @@ -53,7 +42,9 @@ export default function RootLayout({ return ( - + {children}