From 7014e76d21fd03d12b5e49f7a898d628efb57b8d Mon Sep 17 00:00:00 2001 From: development Date: Fri, 26 Dec 2025 00:48:57 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d3e502f..789e046 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,13 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import { Merriweather } from "next/font/google"; +import { Prata } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const inter = Inter({ - variable: "--font-inter", +const prata = Prata({ + variable: "--font-prata", subsets: ["latin"], -}); - -const merriweather = Merriweather({ - variable: "--font-merriweather", - subsets: ["latin"], - weight: ["300", "400", "700", "900"], + weight: ["400"], }); export const metadata: Metadata = { @@ -47,7 +41,7 @@ export default function RootLayout({ {children} @@ -1273,4 +1267,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file