Update Minecraft font

This commit is contained in:
Braydon 2024-04-20 13:04:34 -04:00
parent 1a96d6a522
commit 9f2dc1d4ed
2 changed files with 5 additions and 2 deletions

Binary file not shown.

@ -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",
});