1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 14:05:53 +02:00
.profile/components/Profile/ProfileLogo.tsx

12 lines
282 B
TypeScript
Raw Normal View History

import Image from "next/image"
2021-04-18 01:56:23 +02:00
2024-01-23 22:01:50 +01:00
import Logo from "@/public/images/logo.png"
export const ProfileLogo = (): JSX.Element => {
2021-04-18 01:56:23 +02:00
return (
<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
)
}