diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c0edfc8..3147720 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -23,6 +23,7 @@ import { Noto_Sans } from "next/font/google"; import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import { Manrope } from "next/font/google"; +import { Public_Sans } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -141,6 +142,11 @@ const manrope = Manrope({ subsets: ["latin"], }); +const publicSans = Public_Sans({ + variable: "--font-public-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -149,7 +155,7 @@ export default function RootLayout({ return ( - + {children}