diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8c4f2f6..20c5013 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,8 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Public_Sans } from "next/font/google"; import { Raleway } from "next/font/google"; import { Libre_Baskerville } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -24,13 +26,13 @@ export const metadata: Metadata = { -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", + +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], - weight: ["400", "700"], }); -const inter = Inter({ - variable: "--font-inter", +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -42,7 +44,7 @@ export default function RootLayout({ return ( - + {children}