diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bf48f49..523d029 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 { Nunito_Sans } from "next/font/google"; +import { Figtree } from "next/font/google"; @@ -25,8 +26,9 @@ export const metadata: Metadata = { }, }; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", + +const figtree = Figtree({ + variable: "--font-figtree", subsets: ["latin"], }); @@ -38,7 +40,7 @@ export default function RootLayout({ return ( - + {children}