"use client"; import Image from "next/image"; import VipCard from "./VipCard"; import { useApp } from "@/contexts/AppContext"; export default function PointsDashboard() { const { t } = useApp(); return (
{/* Header Row */}
{/* Left - Tags */}
{/* Season 1 Tag */}
{t("points.season1")}
{/* Live Tag */}
{t("points.live")}
{/* Right - 7x Points Button */}
{t("points.xPoints")}
{/* Main Content */}
{/* Left Section - Points Info */}
{/* Title */}

{t("points.pointsDashboard")}

{t("points.unlockUpTo")} {t("points.xPoints")} {t("points.withEcosystemMultipliers")}

{/* Stats Grid */}
{/* Total Points */}
{t("points.yourTotalPoints")} 2,450
{/* Rank and Timer Container */}
{/* Global Rank */}
{t("points.globalRank")} #8,204 {t("points.topOfUsers")}
{/* Divider */}
{/* Ends In */}
{t("points.endsIn")} 12d 4h Feb 28
{/* Right Section - VIP Card */}
); }