From 23711466de777f1d6fb21d3a588ec4e035ddadd9 Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Mon, 8 Jul 2024 10:27:03 +0200 Subject: [PATCH] feat: add semantics --- .../HotelReservation/SelectHotel/HotelCard/index.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/HotelReservation/SelectHotel/HotelCard/index.tsx b/components/HotelReservation/SelectHotel/HotelCard/index.tsx index d2a4c76b0..f96ab0bdd 100644 --- a/components/HotelReservation/SelectHotel/HotelCard/index.tsx +++ b/components/HotelReservation/SelectHotel/HotelCard/index.tsx @@ -11,13 +11,13 @@ import styles from "./hotelCard.module.css" export default function HotelCard({ hotel }: HotelCardData) { return ( -
+
hotel image
-
+
{hotel.name} -
+
{hotel.address} {hotel.description} @@ -27,7 +27,7 @@ export default function HotelCard({ hotel }: HotelCardData) { {chip} ))}
-
+
+
-
+ ) }