13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
import Image from 'next/image'
|
|
|
|
export const HelpfulSlothImage = () => {
|
|
return (
|
|
<Image
|
|
src="/static/images/helpful-sloth@2x.png"
|
|
width={200}
|
|
height={200}
|
|
alt="Picture of a sloth reading"
|
|
/>
|
|
)
|
|
}
|