/* ============================================================ Enroll page — standalone "Запись и оплата" (block 05) Lifted verbatim from CoursePage's #enroll section so the menu item «Записаться и оплатить» gets its own page. Reuses Subpage chrome + EnrollForm. ============================================================ */ function EnrollPage() { const { t } = useT(); React.useEffect(() => { if (window.lucide) lucide.createIcons(); }); const wrap = { maxWidth: 1100, margin: "0 auto", padding: "0 28px" }; return ( {/* ---- ENROLL + PAYMENT (block 05) ---- */}

{t("course.enrollTitle")}

{t("course.enrollSub")}

); } Object.assign(window, { EnrollPage });