diff --git a/app/page.tsx b/app/page.tsx index 6f206c3..336fe9c 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -42,16 +42,19 @@ export default function Home() { const rentals = [ { + id: "volter-electric-bike", name: "Volter Electric Bike", price: "CA $10/hr", itemDisplay: "/img/bike-display.png", }, { + id: "voltskate-electric-skateboard", name: "VoltSkate Electric Skateboard", price: "CA $10/hr", itemDisplay: "/img/skateboard-display.png", }, { + id: "electric-one-wheel", name: "Electric One-Wheel", price: "CA $10/hr", itemDisplay: "/img/one-wheel-display.png", @@ -81,7 +84,7 @@ export default function Home() {

Rentals

{rentals.map((item, index) => ( - + ))}