"use client"; import Image from "next/image"; import { useApp } from "@/contexts/AppContext"; interface OverviewItemProps { icon: string; label: string; value: string; } function OverviewItem({ icon, label, value }: OverviewItemProps) { return (
{label}
{label}
{value}
); } export default function AssetOverviewCard() { const { t } = useApp(); return (
{/* Header */}

{t("assetOverview.title")}

{t("assetOverview.mediumRisk")}
{/* Overview Items */}
{/* Divider */}
{/* Current Price */}
Price {t("assetOverview.currentPrice")}
1 GY-US = 1.04 USDC
); }