From 8be9aaa2934181dc81225a385f62c7ceabce3c10 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 20:51:24 +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 5075840..1a5fbb9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { Plus_Jakarta_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const plusJakartaSans = Plus_Jakarta_Sans({ - variable: "--font-plus-jakarta-sans", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -36,7 +36,7 @@ export default function RootLayout({ {children}