"use client"; import Image from "next/image"; import { useApp } from "@/contexts/AppContext"; export default function RepayStats() { const { t } = useApp(); return (
{/* Stats Info */}
{/* NET APR */}
{t("repay.netApr")}
3%
{/* Liq.price/offset */}
{t("repay.liqPriceOffset")}
$0.938 / 20%
{/* Position Health */}
{t("repay.positionHealth")}
Safe 50%
{/* Progress Bar */}
); }