Files
web/apps/partner-sas/app/components/PoweredByScandic/PoweredByScandic.tsx
Anton Gunnarsson c0ee968368 Merged in chore/partner-sas-header-footer-styling (pull request #2765)
chore: partner-sas header and footer improvements

* improve header styling

* Add footer


Approved-by: Bianca Widstam
2025-09-08 09:23:20 +00:00

26 lines
695 B
TypeScript

import Image from "@scandic-hotels/design-system/Image"
import { Typography } from "@scandic-hotels/design-system/Typography"
import styles from "./poweredByScandic.module.css"
export function PoweredByScandic() {
return (
<div className={styles.root}>
<Typography variant="Body/Supporting text (caption)/smRegular">
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
<p>Powered by</p>
</Typography>
<div>
<Image
alt="Scandic"
className={styles.logo}
src="/_static/img/scandic-logotype.svg"
height={14}
width={65}
sizes="100vw"
/>
</div>
</div>
)
}