diff --git a/Frontend/src/app/font/Minecraft.otf b/Frontend/src/app/font/Minecraft.otf deleted file mode 100644 index 6904fc1..0000000 Binary files a/Frontend/src/app/font/Minecraft.otf and /dev/null differ diff --git a/Frontend/src/app/font/fonts.ts b/Frontend/src/app/font/fonts.ts index 44a0a87..276f60a 100644 --- a/Frontend/src/app/font/fonts.ts +++ b/Frontend/src/app/font/fonts.ts @@ -8,12 +8,15 @@ import localFont from "next/font/local"; export const notoSans: NextFont = Noto_Sans({ subsets: ["latin"] }); /** - * The Minecraft font to use for the site. + * The Minecraft header font to use for the site. */ export const minecrafter: NextFont = localFont({ src: "../font/Minecrafter.ttf", }); +/** + * The regular Minecraft font to use for the site. + */ export const minecraft: NextFont = localFont({ - src: "../font/Minecraft.otf", + src: "../font/Minecraft.ttf", });