diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7c17ea6..0482cc7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Roboto } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -21,10 +22,15 @@ export const metadata: Metadata = { }; -const roboto = Roboto({ - variable: "--font-roboto", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -35,7 +41,7 @@ export default function RootLayout({ return ( - + {children}