Image
Image ~10 mins - nextjs

Image

<img
src="/hero.png"
alt="Screenshots of the dashboard project showing desktop version"
/>

Image Component

import Image from 'next/image';

export default function Page() {
return (
<Image
src="/profile.png"
width={500}
height={500}
alt="Picture of the author"
/>

);
}