From b453d360a05b8ca297d85bf3ffdfbef5ff6aa147 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 04:32:53 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ced5ccb..bdd4eaf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,9 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -47,9 +36,7 @@ export default function RootLayout({ return ( - + {children}