From 7c635772ff71341bf5bb4f068a86066a2a462f59 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 24 May 2026 07:33:31 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 118f98a..1ae14c8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,8 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Libre_Baskerville } from "next/font/google"; +import { Nunito } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -23,14 +25,12 @@ export const metadata: Metadata = { }, }; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], + +const nunito = Nunito({ + variable: "--font-nunito", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const mulish = Mulish({ + variable: "--font-mulish", subsets: ["latin"], }); export default function RootLayout({ @@ -41,7 +41,7 @@ export default function RootLayout({ return ( - + {children}