basic image loading done

This commit is contained in:
Nico Melone
2025-11-11 15:10:41 -06:00
parent f637bd1f0f
commit 8a44e94538
6 changed files with 9 additions and 3 deletions

View File

@@ -1,11 +1,17 @@
import Image from "next/image";
const images = ["/images/arbys.png", "/images/aandw.png", "/images/bajafresh.png", "/images/canes.png"];
export default function Home() {
return (
<div>
<h1>Rank and Tier</h1>
<h2>List</h2>
{images.map((image, index) => (
<Image
src={image}
key={index}
alt={`Image ${index + 1}`}
width={159}
height={160} />
))}
</div>
);
}

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB