diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd1d3b6..0ca630e 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 { Poppins } from "next/font/google"; +import { Manrope } from "next/font/google"; @@ -19,7 +20,11 @@ export const metadata: Metadata = { }, }; -const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"] }); + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -29,7 +34,7 @@ export default function RootLayout({ return ( - + {children}