basic image loading done
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
0
rank-and-tier/app/rankItems.tsx
Normal file
0
rank-and-tier/app/rankItems.tsx
Normal file
BIN
rank-and-tier/public/images/aandw.png
Normal file
BIN
rank-and-tier/public/images/aandw.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
BIN
rank-and-tier/public/images/arbys.png
Normal file
BIN
rank-and-tier/public/images/arbys.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 41 KiB |
BIN
rank-and-tier/public/images/bajafresh.png
Normal file
BIN
rank-and-tier/public/images/bajafresh.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 42 KiB |
BIN
rank-and-tier/public/images/canes.png
Normal file
BIN
rank-and-tier/public/images/canes.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
Reference in New Issue
Block a user