diff --git a/rank-and-tier/app/page.tsx b/rank-and-tier/app/page.tsx index fc5b648..7c5671a 100644 --- a/rank-and-tier/app/page.tsx +++ b/rank-and-tier/app/page.tsx @@ -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 (
-

Rank and Tier

-

List

- + {images.map((image, index) => ( + {`Image + ))}
); } diff --git a/rank-and-tier/app/rankItems.tsx b/rank-and-tier/app/rankItems.tsx new file mode 100644 index 0000000..e69de29 diff --git a/rank-and-tier/public/images/aandw.png b/rank-and-tier/public/images/aandw.png new file mode 100644 index 0000000..e8ea33e Binary files /dev/null and b/rank-and-tier/public/images/aandw.png differ diff --git a/rank-and-tier/public/images/arbys.png b/rank-and-tier/public/images/arbys.png new file mode 100644 index 0000000..b19689a Binary files /dev/null and b/rank-and-tier/public/images/arbys.png differ diff --git a/rank-and-tier/public/images/bajafresh.png b/rank-and-tier/public/images/bajafresh.png new file mode 100644 index 0000000..7ff7453 Binary files /dev/null and b/rank-and-tier/public/images/bajafresh.png differ diff --git a/rank-and-tier/public/images/canes.png b/rank-and-tier/public/images/canes.png new file mode 100644 index 0000000..51405cc Binary files /dev/null and b/rank-and-tier/public/images/canes.png differ