const STRINGS = { heading: "Appointment Cancelled", body: "Your appointment has been cancelled. If this was a mistake or you'd like to rebook, please contact us.", bookAgain: "Book again", backToPortal: "Back to Portal", } as const; export function BookingCancelledPage() { return (

{STRINGS.heading}

{STRINGS.body}

{STRINGS.bookAgain} {STRINGS.backToPortal}
); }