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