From b98e741523bdae4a53f453317aa2cabef7fe1759 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:25:15 +0000 Subject: [PATCH 1/4] 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 c8ae48b..0f917b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Inter_Tight } from "next/font/google"; +import { Manrope } from "next/font/google"; @@ -41,10 +42,9 @@ export const metadata: Metadata = { }, }; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], + +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], }); export default function RootLayout({ @@ -55,7 +55,7 @@ export default function RootLayout({ return ( - + {children}