import { scandicFriends } from "@scandic-hotels/common/constants/routes/customerService" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import Link from "@scandic-hotels/design-system/OldDSLink" import { Typography } from "@scandic-hotels/design-system/Typography" import { faq } from "@/constants/webHrefs" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" import styles from "./readMore.module.css" export default async function ReadMore() { const [intl, lang] = await Promise.all([getIntl(), getLang()]) const links = [ { href: faq[lang], text: intl.formatMessage({ id: "common.faq", defaultMessage: "FAQ", }), }, { href: scandicFriends[lang], text: intl.formatMessage({ id: "loyalty.membershipTermsAndConditions", defaultMessage: "Membership terms and conditions", }), }, ] return (

{intl.formatMessage({ id: "common.readMore", defaultMessage: "Read more", })}

{links.map((link) => ( {link.text} ))}
) }