"use client"; import Image from "next/image"; import { useApp } from "@/contexts/AppContext"; interface RewardStatProps { label: string; value: string; } function RewardStat({ label, value }: RewardStatProps) { return (
{value} {label}
); } export default function Season1Rewards() { const { t } = useApp(); return (
{/* Background Decoration */}
{/* Content Container */}
{/* Left: Header and Description */}
{/* Header */}

{t("rewards.season1")}

{t("rewards.live")}
{/* Description */}

{t("rewards.earnPoints")}

{/* Right: Stats */}
); }