Next.js Image component
Demo

Code Block
1
2
3
4
5
6
7
8
9
import Image from 'next/image'
<Image
src={image}
alt="Sunset in the mountains"
width={364}
height={208}
sizes="(max-width: 768px) 100vw, 35vw"
/>
1
2
3
4
5
6
7
8
9
import Image from 'next/image'
<Image
src={image}
alt="Sunset in the mountains"
width={364}
height={208}
sizes="(max-width: 768px) 100vw, 35vw"
/>