Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions solutions/reduce-image-bandwidth-usage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Our card is represented by this code:

But wait, given this code we end up with this 👇

![01](./public/docs/screenshot-1.jpg)
![Our element has a width of 256px but we are serving a 1000px image!](./public/docs/screenshot-1a.png)

> Our element has a width of 256px but we are serving a 1000px image!

Expand All @@ -39,7 +39,7 @@ The [`sizes`](https://nextjs.org/docs/api-reference/next/image#sizes) prop provi
</Card>
```

![02](./public/docs/screenshot-2.jpg)
![Now we are being served with an optimized image](./public/docs/screenshot-2a.png)

> Now we are being served with an optimized image.

Expand Down