mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
import Image from 'next/image'
|
|
|
|
import DivloLogo from 'public/images/divlo_logo.png'
|
|
|
|
export const ProfileLogo: React.FC = () => {
|
|
return (
|
|
<div className='px-2 py-6 max-w-[370px] max-h-[370px]'>
|
|
<Image src={DivloLogo} alt='Divlo' priority />
|
|
</div>
|
|
)
|
|
}
|