start work on the frontend
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 8s
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 8s
This commit is contained in:
13
src/components/logo.tsx
Normal file
13
src/components/logo.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import Image from "next/image";
|
||||
|
||||
export default function Logo({ size = 30 }: Readonly<{ size?: number }>) {
|
||||
return (
|
||||
<Image
|
||||
src="https://git.fascinated.cc/MinecraftUtilities/Assets/raw/branch/master/logo.png"
|
||||
alt={"The Logo"}
|
||||
width={size}
|
||||
height={size}
|
||||
className="w-fit h-fit pl-2"
|
||||
/>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user