From 82dcd4917e90b08b1f8a2e9f40816592a7d51aec Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 21 May 2026 17:54:28 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4dc8e3d..95dc79a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { DM_Sans } from "next/font/google"; +import { Manrope } from "next/font/google"; @@ -18,6 +19,11 @@ export const metadata: Metadata = { }, }; + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], @@ -31,7 +37,7 @@ export default function RootLayout({ return ( - + {children}