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}