This commit is contained in:
Braydon 2024-04-16 10:13:13 -04:00
parent 7465ba6175
commit b5251cbf59
2 changed files with 16 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

@ -0,0 +1,16 @@
import Image from "next/image";
/**
* A creeper image.
*
* @returns the creeper jsx
*/
const Creeper = (): JSX.Element => (
<Image
src="/media/creeper.png"
alt="A Minecraft Creeper"
width={216}
height={216}
/>
);
export default Creeper;