/* ============================================================ About page — "От первых ошибок до сотен успешных учеников" Full story of Aleksey Lobov. Long-form editorial layout. ============================================================ */ function PullStat({ value, label }) { return (
{value}
); } /* a body paragraph in the reading column */ function P({ children, lead }) { return (

{children}

); } function AboutPage() { const { t } = useT(); React.useEffect(() => { if (window.lucide) lucide.createIcons(); }); const wrap = { maxWidth: 1100, margin: "0 auto", padding: "0 28px" }; const read = { maxWidth: 680 }; const stats = t("about.stats"); const p = t("about.p"); return ( {/* ---- title block ---- */}

{t("about.title")}

{t("about.sub")}

{/* ---- portrait + facts band ---- */}
{/* ---- the story ---- */}

{p[0]}

{p[1]}

{p[2]}

{/* pull quote */}

{t("about.quote")}

{t("about.quoteSub")}

{p[3]}

{p[4]}

{p[5]}

{p[6]}

{/* ---- closing CTA (dark) ---- */}

{t("about.ctaTitle")}

{t("about.ctaSub")}

{ window.location.href = "course.html"; }} style={{ background: "var(--paper-on-ink)", color: "var(--ink)", boxShadow: "none" }}>{t("about.ctaProgram")} { window.location.href = "enroll.html"; }} style={{ color: "var(--paper-on-ink)", borderColor: "rgba(255,255,255,0.3)" }}>{t("common.enrollPay")}
); } Object.assign(window, { AboutPage });