omnivore/packages/web/components/elements/images/HelpfulSlothImage.tsx

13 lines
232 B
TypeScript
Raw Permalink Normal View History

2023-09-05 01:58:38 +00:00
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"
/>
)
}