diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6aebe45..525d993 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,6 +10,7 @@ import { Inter_Tight } from "next/font/google"; import { Open_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Public_Sans } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -47,9 +48,11 @@ export const metadata: Metadata = { -const publicSans = Public_Sans({ - variable: "--font-public-sans", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", @@ -64,7 +67,7 @@ export default function RootLayout({ return ( - + {children}