"use client";
import { useApp } from "@/contexts/AppContext";
export default function RepayPoolStats() {
const { t } = useApp();
return (
{/* Left Card - Total Value Locked and Utilization */}
{/* Total Value Locked */}
{t("repay.totalValueLocked")}
$124,592,102
{/* Utilization */}
{t("repay.utilization")}
42.8%
{/* Right Card - Reward Multiplier */}
{/* Reward Multiplier */}
{t("repay.rewardMultiplier")}
2.5x
{/* Overlapping Circles */}
{/* Green Circle */}
{/* Blue Circle */}
{/* Gray Circle with +3 */}
+3
);
}