"use client"; import NoticeBox from "./notice-box"; import { SliderHeader } from "./slider-header"; import type { RegistrationAnswer, SliderSlideProps } from "./slider-slide"; type SliderSlideFourProps = SliderSlideProps & { selectedRegistration: RegistrationAnswer; onRegistrationChange: (registration: RegistrationAnswer) => void; }; export function SliderSlideFour({ index, totalSteps, selectedRegistration, onRegistrationChange, }: SliderSlideFourProps) { const options = [ { id: "self", label: "Registering for myself" }, { id: "other", label: "Registering for someone else" }, ] as const; return (
You can register both for yourself and for your loved ones, but obtaining the explicit consent and permission of the person you are creating the profile for is mandatory. To ensure accuracy, it is best to let the individual complete the subsequent steps themselves. Remember that all matches are introduced with absolute privacy and strictly based on the information you provide.
{options.map((option) => { const isSelected = option.id === selectedRegistration; return ( ); })}
); }