make the server page show a minecraft style server
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 28s

This commit is contained in:
Lee
2024-04-19 16:51:58 +01:00
parent 0708def9a1
commit 78709ed060
8 changed files with 62 additions and 45 deletions

BIN
src/app/font/Minecraft.otf Normal file

Binary file not shown.

16
src/app/font/fonts.ts Normal file
View File

@ -0,0 +1,16 @@
import { Inter } from "next/font/google";
import localFont from "next/font/local";
import { NextFont } from "next/dist/compiled/@next/font";
/**
* The default font to use for the site.
*/
export const inter = Inter({ subsets: ["latin"] });
/**
* The Minecraft font to use for the site.
*/
export const minecraft: NextFont = localFont({
src: "../font/Minecraft.otf",
});