switch to local assets for the logo
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m6s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m6s
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
import Image from "next/image";
|
||||
import { ReactElement } from "react";
|
||||
import config from "@root/config.json";
|
||||
|
||||
type LogoProps = {
|
||||
/**
|
||||
@ -11,7 +12,7 @@ type LogoProps = {
|
||||
export default function Logo({ size = 30 }: LogoProps): ReactElement {
|
||||
return (
|
||||
<Image
|
||||
src="https://git.fascinated.cc/MinecraftUtilities/Assets/raw/branch/master/logo.png"
|
||||
src={`/media/logo.png`}
|
||||
alt={"The Logo"}
|
||||
width={size}
|
||||
height={size}
|
||||
|
Reference in New Issue
Block a user