import Image from "next/image"; import { Button } from "@heroui/react"; interface BindInviteCardProps { placeholder?: string; onApply?: (code: string) => void; } export default function BindInviteCard({ placeholder = "ENTER CODE", onApply, }: BindInviteCardProps) { return (
{/* Header */}
BIND INVITE
{/* Description */}

Were you invited? Enter the code here to boost your base yield by +0.5%.

{/* Input and Button */}
{/* Input Field */}
{placeholder}
{/* Apply Button */}
); }