"use client"; import Image from "next/image"; import { useApp } from "@/contexts/AppContext"; export default function GeographicAllocation() { const { t } = useApp(); const regions = [ { countryKey: "transparency.unitedStates", regionKey: "transparency.northAmerica", value: "$305,000,000", percentage: "65.6%", flag: "/lr0.svg", }, { countryKey: "transparency.hongKong", regionKey: "transparency.asiaPacific", value: "$160,000,000", percentage: "34.4%", flag: "/container14.svg", }, ]; return (
{/* Header */}

{t("transparency.geographicAllocation")}

{t("transparency.geographicSubtitle")}

{/* Region Cards */}
{regions.map((region, index) => (
{/* Left - Flag and Location */}
{t(region.countryKey)}
{t(region.countryKey)} {t(region.regionKey)}
{/* Right - Value and Percentage */}
{region.value} {region.percentage}
))}
); }