* feat(BOOK-117): Added aria-label to Scandic Friends levels * feat(BOOK-117): Added aria-label to hotel logos * feat(BOOK-117): Added alt text to app download images * feat(BOOK-117): Added same logo component to footer as the one in the header * feat(BOOK-117): Added aria attributes to icons similar to how we handled MaterialIcon aria attributes Approved-by: Bianca Widstam Approved-by: Matilda Landström
99 lines
2.9 KiB
TypeScript
99 lines
2.9 KiB
TypeScript
import Link from "@scandic-hotels/design-system/OldDSLink"
|
|
import SkeletonShimmer from "@scandic-hotels/design-system/SkeletonShimmer"
|
|
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import { getFooter } from "@/lib/trpc/memoizedRequests"
|
|
|
|
import LanguageSwitcher from "@/components/LanguageSwitcher"
|
|
import { getIntl } from "@/i18n"
|
|
|
|
import { LogoLink } from "../../LogoLink"
|
|
import SocialLink from "./SocialLink"
|
|
|
|
import styles from "./details.module.css"
|
|
|
|
export default async function FooterDetails() {
|
|
const intl = await getIntl()
|
|
const footer = await getFooter()
|
|
const currentYear = new Date().getFullYear()
|
|
|
|
return (
|
|
<div className={styles.details}>
|
|
<div className={styles.topContainer}>
|
|
<LogoLink isInverted />
|
|
<nav className={styles.socialNav}>
|
|
{footer?.socialMedia.links.map(
|
|
({ href }) => href && <SocialLink link={href} key={href.title} />
|
|
)}
|
|
</nav>
|
|
</div>
|
|
<div className={styles.bottomContainer}>
|
|
<Typography variant="Tag/sm">
|
|
<p>
|
|
{intl.formatMessage(
|
|
{
|
|
id: "footer.copyright",
|
|
defaultMessage:
|
|
"© {currentYear} Scandic Hotels all rights reserved",
|
|
},
|
|
{ currentYear }
|
|
)}
|
|
</p>
|
|
</Typography>
|
|
<div className={styles.navigationContainer}>
|
|
<nav className={styles.navigation}>
|
|
{footer?.tertiaryLinks.map((link) => (
|
|
<Typography key={link.title} variant="Tag/sm">
|
|
<Link
|
|
className={styles.link}
|
|
color="peach50"
|
|
href={link.url}
|
|
target="_blank"
|
|
>
|
|
{link.title}
|
|
</Link>
|
|
</Typography>
|
|
))}
|
|
</nav>
|
|
<LanguageSwitcher type="footer" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export async function FooterDetailsSkeleton() {
|
|
const intl = await getIntl()
|
|
const currentYear = new Date().getFullYear()
|
|
|
|
return (
|
|
<section className={styles.details}>
|
|
<div className={styles.topContainer}>
|
|
<LogoLink isInverted />
|
|
<nav className={styles.socialNav}>
|
|
<SkeletonShimmer width="10ch" height="20px" contrast="dark" />
|
|
</nav>
|
|
</div>
|
|
<div className={styles.bottomContainer}>
|
|
<Typography variant="Tag/sm">
|
|
<p>
|
|
{intl.formatMessage(
|
|
{
|
|
id: "footer.copyright",
|
|
defaultMessage:
|
|
"© {currentYear} Scandic Hotels all rights reserved",
|
|
},
|
|
{ currentYear }
|
|
)}
|
|
</p>
|
|
</Typography>
|
|
<div className={styles.navigationContainer}>
|
|
<nav className={styles.navigation}>
|
|
<SkeletonShimmer width="40ch" height="20px" contrast="dark" />
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|