feat: SW-2028 Updated Guarantee notification

This commit is contained in:
Hrishikesh Vaipurkar
2025-03-26 17:18:34 +01:00
parent 13213efb29
commit 03deea1102
10 changed files with 72 additions and 20 deletions

View File

@@ -125,3 +125,23 @@ export default function ConfirmBooking({
</div>
)
}
export function ConfirmBookingRedemption() {
const intl = useIntl()
return (
<div className={styles.container}>
<div className={styles.guaranteeContainer}>
<Typography variant="Body/Supporting text (caption)/smRegular">
<p>
{intl.formatMessage({
id: "When you confirm the booking the room will be guaranteed for late arrival. If you fail to arrive without cancelling in advance or if you cancel after 18:00 local time, you will be charged for one reward night.",
})}
</p>
</Typography>
</div>
<div className={styles.checkboxContainer}>
<TermsAndConditions />
</div>
</div>
)
}