diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e7dd8b4..47fa976 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito } from "next/font/google"; +import { MedievalSharp } from "next/font/google"; @@ -21,10 +22,8 @@ export const metadata: Metadata = { }, }; -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); + +const gothicFont = MedievalSharp({ variable: "--font-gothic", subsets: ["latin"], weight: ["400"] }); export default function RootLayout({ children, @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children}