diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 01945b5..3640220 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Figtree } from "next/font/google"; import { Montserrat } from "next/font/google"; import { Poppins } from "next/font/google"; +import { Merriweather } from "next/font/google"; @@ -26,10 +27,10 @@ export const metadata: Metadata = { -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], + +const merriweather = Merriweather({ + variable: "--font-merriweather", subsets: ["latin"], + weight: ["300", "400", "700", "900"], }); export default function RootLayout({ @@ -40,7 +41,7 @@ export default function RootLayout({ return ( - + {children}