"use client"; import type { RegistrationAnswer, SliderSlideProps, } from "@/components/sliders/slider-slide"; type SliderSlideFourProps = SliderSlideProps & { selectedRegistration: RegistrationAnswer; onRegistrationChange: (registration: RegistrationAnswer) => void; }; export function SliderSlideFour({ index, selectedRegistration, onRegistrationChange, }: SliderSlideFourProps) { const options = [ { id: "self", label: "Registering for myself" }, { id: "other", label: "Registering for someone else" }, ] as const; return (

Submit Process

{index + 1}/4 terms & conditions

Read the terms and conditions carefully so that you don't run into any problems in the next process - reading this section is mandatory.

{options.map((option) => { const isSelected = option.id === selectedRegistration; return ( ); })}
); }