'use client'; import Image from 'next/image'; import { cleanImageUrl, getRarityColor, getRarityLabel, type Reward } from '../lib/rewards'; interface RewardCardProps { reward: Reward; showValue?: boolean; className?: string; } export default function RewardCard({ reward, showValue = true, className = '' }: RewardCardProps) { return (
Value: ${reward.price}
)}