1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/Profile/ProfileLogo.tsx

12 lines
272 B
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
import Image from 'next/image'
import DivloLogo from 'public/images/divlo_logo.png'
2021-04-18 01:56:23 +02:00
export const ProfileLogo: React.FC = () => {
return (
<div className='px-2 py-6 max-w-[370px] max-h-[370px]'>
2021-08-23 19:41:39 +02:00
<Image src={DivloLogo} alt='Divlo' priority />
</div>
2021-04-18 01:56:23 +02:00
)
}