import Image from "next/image"; import { Button } from "@heroui/react"; import BorderedButton from "@/components/common/BorderedButton"; interface ReferralCodeCardProps { code: string; onCopy?: () => void; onShare?: () => void; } export default function ReferralCodeCard({ code = "PR0T0-8821", onCopy, onShare, }: ReferralCodeCardProps) { return (
Share your unique code to earn 10% commission on all friend activities.
{/* Code Display and Buttons */}