From ef646a2b8d4e25ce31e87058f017089eac20e5d2 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 26 Jan 2026 02:18:18 +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 c1ed1b5..a2d7cfe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { Fira_Code } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const firaCode = Fira_Code({ - variable: "--font-fira-code", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -30,7 +30,7 @@ export default function RootLayout({ {children}