diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 260ff50..31d70eb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Figtree } from "next/font/google"; @@ -21,12 +22,9 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const figtree = Figtree({ + variable: "--font-figtree", subsets: ["latin"], }); @@ -38,7 +36,7 @@ export default function RootLayout({ return ( - + {children}