// Sections.jsx — remaining landing sections function Proof({ t }) { return (
{t.proof.title}
{t.proof.items.map((item, i) => (
{item.stat}
{item.unit}
{item.who}
{item.note}
))}
); } function Features({ t }) { return (
{t.features.items.map((it, i) => (
{it.title}
{it.body}
))}
); } function Duo({ t }) { return (
); } function DuoCard({ kind, title, body, points }) { return (
{title}
{body}
{kind === "member" ? : }
    {points.map((p, i) => (
  • {p}
  • ))}
); } function MemberMini() { // Minimal phone frame showing feed row + bottom tab bar return (
Лента
{[0,1].map(i => (
))}
); } function CreatorMini() { // Dense admin KPI row + bars return (
{[ { l: "MRR", v: "1\u202F284\u202F000", u: "₸", d: "+12%" }, { l: "Участников", v: "412", u: "", d: "+18" }, { l: "Удержание", v: "94", u: "%", d: "+2 п.п." }, ].map((k, i) => (
{k.l}
{k.v} {k.u && {k.u}}
{k.d}
))}
Активность · 7 дней Пн–Вс
{[34, 52, 48, 70, 62, 88, 74].map((h, i) => (
))}
); } function MiniChip({ icon, label }) { return (
{label}
); } function Locales({ t }) { return (
{t.locales.overline}

{t.locales.title}

{t.locales.body}

{t.locales.overline.split(" ")[0]}
{t.locales.scripts.map((s, i) => (
{s.label}
{s.sample}
))}
Currencies
{t.locales.currencies.map((c, i) => (
{c.code}
{c.sample}
))}
); } function Pricing({ t, lang }) { return (
{t.pricing.plans.map((p, i) => )}
{t.pricing.footnote}
); } function PlanCard({ plan, lang }) { const hi = plan.highlighted; return (
{plan.badge && ( {plan.badge} )}
{plan.name}
{plan.summary}
{plan.price} {plan.unit}
    {plan.features.map((f, i) => (
  • {f}
  • ))}
); } function FAQ({ t }) { const [open, setOpen] = React.useState(0); return (

{t.faq.title}

{t.faq.items.map((it, i) => { const isOpen = open === i; return (
{isOpen && (
{it.a}
)}
); })}
); } function FinalCTA({ t, lang }) { return (

{t.finalCta.title}

{t.finalCta.body}

); } function Footer({ t, lang, dark }) { const productHrefs = ["#features", "#pricing", "#proof", "#faq"]; const companyHrefs = ["#duo", "#proof", "mailto:admin@ozimiz.net", "mailto:admin@ozimiz.net"]; const legalHrefs = [ appUrl(lang, "/legal/terms"), appUrl(lang, "/legal/privacy"), appUrl(lang, "/legal/offer"), appUrl(lang, "/legal/refunds"), ]; return (
Ozimiz
{t.footer.tagline}
{t.footer.copy}
); } function FooterCol({ title, links, hrefs }) { return (
{title}
    {links.map((l, i) => (
  • {l}
  • ))}
); } function SectionHeading({ overline, title, sub }) { return (
{overline &&
{overline}
} {title &&

{title}

} {sub &&

{sub}

}
); } const overlineStyle = { font: "600 12px Manrope, sans-serif", letterSpacing: ".08em", textTransform: "uppercase", color: "var(--fg-muted)", }; const headingStyle = { font: "800 clamp(30px, 3.4vw, 40px)/1.1 Manrope, sans-serif", letterSpacing: "-0.02em", color: "var(--fg)", margin: 0, textWrap: "balance", }; Object.assign(window, { Proof, Features, Duo, Locales, Pricing, FAQ, FinalCTA, Footer, SectionHeading });