From a880cc6b5c8ac91994578bbc81dabba6fcda0ff7 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 12:20:37 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8c47ded..ede9ecd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,9 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Mulish } from "next/font/google"; +import { Inter } from "next/font/google"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], @@ -30,6 +31,15 @@ export const metadata: Metadata = { } }; +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -39,7 +49,7 @@ export default function RootLayout({ {children}