From 1edff1ec5b13495280b9ebb038dffb24074994b9 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 21:34:41 +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 5419bc3..df1ed1c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { Source_Code_Pro } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const sourceCodePro = Source_Code_Pro({ - variable: "--font-source-code-pro", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -36,7 +36,7 @@ export default function RootLayout({ {children}