import { useIntl } from "react-intl" import { bookingTermsAndConditions, privacyPolicy, } from "@/constants/currentWebHrefs" import Checkbox from "@/components/TempDesignSystem/Form/Checkbox" import Link from "@/components/TempDesignSystem/Link" import Caption from "@/components/TempDesignSystem/Text/Caption" import useLang from "@/hooks/useLang" import styles from "../payment.module.css" export default function TermsAndConditions() { const intl = useIntl() const lang = useLang() return ( <> {intl.formatMessage( { id: "By paying with any of the payment methods available, I accept the terms for this booking and the general Terms & Conditions, and understand that Scandic will process my personal data for this booking in accordance with Scandic's Privacy policy. I also accept that Scandic require a valid credit card during my visit in case anything is left unpaid.", }, { termsAndConditionsLink: (str) => ( {str} ), privacyPolicyLink: (str) => ( {str} ), } )} {intl.formatMessage({ id: "I accept the terms and conditions", })} {intl.formatMessage({ id: "I would like to get my booking confirmation via sms", })} ) }