import { ctaChecklist } from '../data/content' import { useReveal } from '../hooks/useReveal' import { cx } from '../lib/cx' import { CheckIcon } from './Icons' import { Container, Label, Section, headingScale } from './Layout' import { LeadForm } from './LeadForm' export function RequestSection({ configuration, commentPrefill }: { configuration: string; commentPrefill: string }) { const { ref, revealClass } = useReveal() return (
) }