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

{ctaSection?.sub_title}

{ctaSection?.description}

); }; export default CallToAction;