Assets
<img src="/vercel.svg" alt="Vercel Logo" className="logo" />import Image from 'next/image'
import profilePic from '../public/me.png'
const Example = () => (
<div className="grid-element">
<Image
src={profilePic}
alt="Picture of the author"
width={500}
height={500}
/>
<Image
src="/example.png"
alt="Picture of the author"
fill
sizes="(max-width: 768px) 100vw,
(max-width: 1200px) 50vw,
33vw"
/>
</div>
)Last updated