nonszy-space/src/components/landing-image.tsx
2025-09-02 22:56:05 +07:00

15 lines
459 B
TypeScript

import Image from "next/image"
import { FloatingLabel } from "./floating-label"
export const LandingImage = () => (
<FloatingLabel placeholder="Coral Glasses ❤️. Alert: NOT MY WORK! character by JoelG, See terms and conditions">
<Image
className="mb-8 mx-auto"
alt="Coral <3"
src="https://media1.tenor.com/m/RIP2rxKM_FgAAAAC/ena-ena-dream-bbq.gif"
width={280}
height={280}
unoptimized
/>
</FloatingLabel>
)