1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-11-05 13:01:30 +01:00
.profile/components/Profile/ProfileLogo.tsx

12 lines
280 B
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
import Image from 'next/image'
import Logo from 'public/images/logo.png'
export const ProfileLogo = (): JSX.Element => {
2021-04-18 01:56:23 +02:00
return (
2021-12-04 15:52:51 +01:00
<div className='max-h-[370px] max-w-[370px] px-2 py-6'>
<Image quality={100} src={Logo} alt='Théo LUDWIG' priority />
</div>
2021-04-18 01:56:23 +02:00
)
}