diff --git a/src/app/layout.tsx b/src/app/layout.tsx index efa1e48..9d8dd80 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,6 +10,7 @@ import { Playfair_Display, Lato } from "next/font/google"; import { Montserrat } from "next/font/google"; import { Figtree } from "next/font/google"; import { Libre_Baskerville } from "next/font/google"; +import { Public_Sans } from "next/font/google"; @@ -26,10 +27,10 @@ export const metadata: Metadata = { -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", + +const publicSans = Public_Sans({ + variable: "--font-public-sans", subsets: ["latin"], - weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", @@ -44,7 +45,7 @@ export default function RootLayout({ return ( - + {children}