From 3d35c021c510bfdfce328a652bddb07ec0020e9c Mon Sep 17 00:00:00 2001 From: development Date: Thu, 8 Jan 2026 16:02:17 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8e8bc51..5e1c98c 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 = { @@ -34,7 +34,7 @@ export default function RootLayout({ {children} @@ -1260,4 +1260,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}