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