1 of 1 unhandled error

Server Error

TypeError: Cannot read properties of undefined (reading 'map')

This error happened while generating the page. Any console logs will be displayed in the terminal window.

Source
pages/index.js (42:18) @ HomePage
40 |   return (
41 |     <section className="products">
42 |       {products.map((item) => (
   |                  ^
43 |         <ProductCard key={item.id} {...item} />
44 |       ))}
45 |     </section>