Files
omnivore/packages/web/components/elements/images/HelpfulSlothImage.tsx
Jackson Harper 9e78976bf0 Add sloth image
2023-09-05 09:59:19 +08:00

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"
/>
)
}