Files
web/apps/scandic-web/components/HotelReservation/SignupPromo/Mobile.tsx
Simon.Emanuelsson 1108105580 Merged in feat/SW-1762 (pull request #2050)
feat: make enter details bottom sheet pixed, and add spacing at the bottom of page

* feat: make enter details bottom sheet pixed, and add spacing at the bottom of page


Approved-by: Arvid Norlin
2025-05-12 10:19:39 +00:00

24 lines
538 B
TypeScript

"use client"
import { useIntl } from "react-intl"
import Footnote from "@/components/TempDesignSystem/Text/Footnote"
import styles from "./signupPromo.module.css"
export default function SignupPromoMobile() {
const intl = useIntl()
return (
<div
data-footer-spacing-signup
className={styles.memberDiscountBannerMobile}
>
<Footnote color="burgundy">
{intl.formatMessage({
defaultMessage: "Join or log in while booking for member pricing.",
})}
</Footnote>
</div>
)
}