From f0747903538431e3a207f2f659d18be1c9f9114d Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 07:55:46 +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 4b8a788..7eb0c52 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"], }); @@ -34,7 +34,7 @@ export default function RootLayout({ {children}