diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 16b505f..9c4e69e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Instrument_Sans } from "next/font/google"; +import { Figtree } from "next/font/google"; const outfit = Outfit({ variable: "--font-outfit", subsets: ["latin"], @@ -36,6 +37,11 @@ const outfit = Outfit({ subsets: ["latin"], }); +const figtree = Figtree({ + variable: "--font-figtree", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -44,7 +50,7 @@ export default function RootLayout({ return ( - + {children}