"use client"; /** * InvestmentClearance — bottom-grid «Investment Clearance» card. The §23 finance * model is NOT in the backend, so every bignum (GDV / Cost / Profit / ROI / IRR) * is an honest «—» placeholder with a «после финмодели (§23)» caption — NO * fabricated numbers. The bignum layout matches the prototype. "Подробнее" opens * the finance drawer. */ import styles from "@/app/site-finder/analysis/[cad]/ptica/ptica.module.css"; import { adaptInvestmentClearance } from "@/components/site-finder/ptica/ptica-adapt"; import type { DrawerKey } from "@/components/site-finder/ptica/drawers/drawer-keys"; interface Props { onOpenDrawer: (key: DrawerKey) => void; } export function InvestmentClearance({ onOpenDrawer }: Props) { const { bignums, caption } = adaptInvestmentClearance(); return (

Investment Clearance финансовая модель

{bignums.map((b) => (
{b.label}
{b.value}
{b.unit && {b.unit}}
))}

{caption}

); }