mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import Image from 'next/image'
|
|
|
|
import Logo from 'public/images/logo.png'
|
|
|
|
export const ProfileLogo: React.FC = () => {
|
|
return (
|
|
<div className='max-h-[370px] max-w-[370px] px-2 py-6'>
|
|
<Image quality={100} src={Logo} alt='Théo LUDWIG' priority />
|
|
</div>
|
|
)
|
|
}
|