"use client"; import Image from "next/image"; import { useApp } from "@/contexts/AppContext"; interface VerificationCardProps { icon: string; title: string; description: string; buttonText: string; } function VerificationCard({ icon, title, description, buttonText }: VerificationCardProps) { return (
{title}

{title}

{description}

); } export default function AssetCustodyVerification() { const { t } = useApp(); return (
{/* Header */}

{t("custody.title")}

{t("custody.description")}

{/* Holdings Table Card */}
{/* Table Header */}

{t("custody.underlyingHoldings")}

{t("custody.verifiedBy")}

{t("custody.lastUpdated")}: 2 {t("custody.minutesAgo")}
{/* Table */}
{/* Table Header Row */}
{t("custody.custodian")}
{t("custody.assetType")}
{t("custody.maturity")}
{t("custody.valueUSD")}
{t("custody.status")}
{/* Table Body Row */}
{/* Custodian */}
GY
{t("custody.morganStanley")} {t("custody.primeBroker")}
{/* Asset Type */}
{t("custody.usEquityPortfolio")}
{/* Maturity */}
05 Feb 2026 (77 {t("custody.days")})
{/* Value */}
$12,500,000.00
{/* Status */}
{t("custody.verified")}
{/* Table Footer Row */}
{t("custody.totalValue")}
$12,500,000.00
{/* Verification Cards Row */}
{/* Independent Verifications */}

{t("custody.independentVerifications")}

{t("custody.independentDesc")}

{t("custody.attestationReport")} November 2025
{t("custody.attestationReport")} October 2025
); }