diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83dfa13..0482cc7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,8 @@ import Tag from "@/tag/Tag"; 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"; @@ -19,12 +21,15 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ - variable: "--font-manrope", + + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], }); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -36,7 +41,7 @@ export default function RootLayout({ return ( - + {children}