Files
Frontend/src/app/components/logo.tsx
Liam f00d6d8ba4
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
add motd to the server page
2024-04-16 21:18:08 +01:00

14 lines
358 B
TypeScript

import Image from "next/image";
export default function Logo({ size = 30 }: Readonly<{ size?: number }>): JSX.Element {
return (
<Image
src="https://git.fascinated.cc/MinecraftUtilities/Assets/raw/branch/master/logo.png"
alt={"The Logo"}
width={size}
height={size}
className={`w-[${size}px] h-[${size}px]`}
/>
);
}