From 095228a6165c2eb49024392d2d2c385f2296f2e7 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 16:30:17 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 18fea4a..2afa173 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,18 @@ import type { Metadata } from "next"; -import { Prata } from "next/font/google"; +import { Playfair_Display, Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const prata = Prata({ - variable: "--font-prata", +const playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], - weight: ["400"], +}); + +const roboto = Roboto({ + variable: "--font-roboto", + subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export const metadata: Metadata = { @@ -44,7 +49,7 @@ export default function RootLayout({ {children} @@ -1270,4 +1275,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}