Files
omnivore/packages/web/components/elements/images/HelpfulOwlImage.tsx
2023-09-05 09:59:19 +08:00

13 lines
227 B
TypeScript

import Image from 'next/image'
export const HelpfulOwlImage = () => {
return (
<Image
src="/static/images/helpful-owl@2x.png"
width={200}
height={200}
alt="Picture of an owl reading"
/>
)
}