From 8838c0adb71414662b37aa75b36bec4d4d7cf72d Mon Sep 17 00:00:00 2001 From: development Date: Mon, 22 Dec 2025 10:58:22 +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 ac43c86..e8cf313 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { Playfair_Display } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const playfairDisplay = Playfair_Display({ - variable: "--font-playfair-display", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -39,7 +39,7 @@ export default function RootLayout({ {children}