From 3e952d70427e8dfe964f6d4cc4986744d3a09c07 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 10:20:54 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 962d417..47096df 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,7 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Open_Sans } from "next/font/google"; -import { Poppins } from "next/font/google"; +import { Cormorant_Garamond } from "next/font/google"; @@ -16,9 +16,9 @@ export const metadata: Metadata = { }; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], }); export default function RootLayout({ @@ -29,7 +29,7 @@ export default function RootLayout({ return ( - + {children}