Files
www_mycelium_cloud2/src/components/Candy.tsx
2025-09-13 16:22:16 +02:00

18 lines
317 B
TypeScript

'use client'
import Image from 'next/image'
export function Candy() {
return (
<div className="hidden lg:block absolute bottom-4 left-1/6 -translate-x-1/2">
<Image
src="/images/candy.gif"
alt="Candy"
width={600}
height={600}
unoptimized
/>
</div>
)
}