fix: make all h4 and subtitles capitalized

This commit is contained in:
Christel Westerberg
2024-07-15 15:07:23 +02:00
parent e8b9baf99e
commit 62310caa90
9 changed files with 26 additions and 15 deletions

View File

@@ -18,7 +18,9 @@ export default async function HotelCard({ hotel }: HotelCardProps) {
<div className={styles.information}>
<header className={styles.title}>
<ScandicLogoIcon color="red" />
<Title as="h4">{hotel.name}</Title>
<Title as="h4" textTransform="capitalize">
{hotel.name}
</Title>
</header>
<div className={styles.description}>
<span>{`${hotel.address.streetAddress}, ${hotel.address.city}`}</span>