make the server page show a minecraft style server
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 28s
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 28s
This commit is contained in:
BIN
src/app/font/Minecraft.otf
Normal file
BIN
src/app/font/Minecraft.otf
Normal file
Binary file not shown.
16
src/app/font/fonts.ts
Normal file
16
src/app/font/fonts.ts
Normal 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",
|
||||
});
|
Reference in New Issue
Block a user