feat: WEB-210 Rebased with develop branch

This commit is contained in:
Hrishikesh Vaipurkar
2024-06-26 18:31:56 +02:00
parent 6e901f526a
commit 1fd7cdcbc3

View File

@@ -2,8 +2,8 @@ import { dt } from "@/lib/dt"
import { CalendarIcon } from "@/components/Icons"
import Image from "@/components/Image"
import Caption from "@/components/TempDesignSystem/Text/Caption"
import Link from "@/components/TempDesignSystem/Link"
import Caption from "@/components/TempDesignSystem/Text/Caption"
import Title from "@/components/TempDesignSystem/Text/Title"
import styles from "./stay.module.css"
@@ -22,6 +22,7 @@ export default function StayCard({ stay, lang }: StayCardProps) {
const departDateTime = depart.format("YYYY-MM-DD")
return (
<Link href={bookingUrl ?? ""}>
<article className={styles.stay}>
<Image
className={styles.image}
@@ -46,5 +47,6 @@ export default function StayCard({ stay, lang }: StayCardProps) {
</div>
</footer>
</article>
</Link>
)
}