diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6f1b047..64deeab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ 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 { Open_Sans } from "next/font/google"; @@ -22,12 +23,13 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ - variable: "--font-manrope", + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], }); @@ -39,7 +41,7 @@ export default function RootLayout({ return ( - + {children}