import SubscribeInput from '@/components/subscribe-input'; import { getPageSection } from '@/lib/page'; import { IntroPageProps } from '@/types/page'; import { usePage } from '@inertiajs/react'; import Section from '../section'; const CallToAction = () => { const { props } = usePage(); const ctaSection = getPageSection(props.page, 'call_to_action'); return (

{ctaSection?.title}

{ctaSection?.description}

); }; export default CallToAction;