import { formats, timeline } from '../data/content' import { useReveal } from '../hooks/useReveal' import { cx } from '../lib/cx' import { Container, Section, SectionHead, SmallNote } from './Layout' export function LaunchSection() { const grid = useReveal() const steps = useReveal() return (
{formats.map((format) => (
))}
Финальная конфигурация определяется по техническому состоянию аппаратов, документации, площади, лицензии, штату, потоку пациентов и текущей загрузке.

Пошаговый план модернизации кабинета за 8 недель

{timeline.map((step) => (
{step.week} {step.title} {step.lead}
    {step.items.map((item) => (
  • {item.title} {'text' in item && item.text ? `: ${item.text}` : null}
  • ))}
))}
) }