1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-18 21:55:52 +02:00
.profile/components/Profile/ProfileLogo.tsx

12 lines
280 B
TypeScript

import Image from "next/image"
import Logo from "public/images/logo.png"
export const ProfileLogo = (): JSX.Element => {
return (
<div className="max-h-[370px] max-w-[370px] px-2 py-6">
<Image quality={100} src={Logo} alt="Théo LUDWIG" priority />
</div>
)
}