Hi there
Great tutorial
For part two of the tutorial.
In the new version of strapi to show the images in the restaurant list you need : http://127.0.0.1:1337 and not http://localhost:1337:
Beneath what you need need to change in RestaurantList.jsx
<Image
className="w-full rounded-2xl"
height={300}
width={300}
src={`${process.env.STRAPI_URL || "http://127.0.0.1:1337"}${
data.attributes.image.data[0].attributes.url
}`}
alt=""
/>
and not
<Image
className="w-full rounded-2xl"
height={300}
width={300}
src={`${process.env.STRAPI_URL || "http://localhost:1337"}${
data.attributes.image.data[0].attributes.url
}`}
alt=""
/>