From 4bc117e19c1f8ffacf94f53dafbe5e641249d897 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 25 Jan 2026 15:09:39 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 47c3e5a..70b0b10 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 = { @@ -31,7 +30,7 @@ export default function RootLayout({ {children} @@ -1257,4 +1256,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}