From cc3ca364480e7a84d0110e8f51b1e01c14424f0b Mon Sep 17 00:00:00 2001 From: development Date: Tue, 27 Jan 2026 03:50:59 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f885209..c9ceb4d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,11 @@ import type { Metadata } from "next"; -import { Cormorant_Garamond } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const cormorantGaramond = Cormorant_Garamond({ - variable: "--font-cormorant-garamond", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -37,7 +36,7 @@ export default function RootLayout({ {children}