From bed5fc8085e1a0c7bcb8737c35715baf78a09e01 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 22:54:15 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6a131da..dd75785 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,12 @@ import type { Metadata } from "next"; -import { Inter } 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", subsets: ["latin"], +const prata = Prata({ + variable: "--font-prata", subsets: ["latin"], + weight: ["400"], }); export const metadata: Metadata = { @@ -38,7 +39,7 @@ export default function RootLayout({ {children} @@ -1264,4 +1265,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}