From a4e597dc14a83f1ae5f8204eabbf00f9fff748ca Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Thu, 24 Oct 2024 15:57:27 +0200 Subject: [PATCH] feat(SW-281): remove li --- .../ContentPage/HotelListing/index.tsx | 76 +++++++++---------- 1 file changed, 37 insertions(+), 39 deletions(-) diff --git a/components/ContentType/ContentPage/HotelListing/index.tsx b/components/ContentType/ContentPage/HotelListing/index.tsx index f206ba242..4c33e2568 100644 --- a/components/ContentType/ContentPage/HotelListing/index.tsx +++ b/components/ContentType/ContentPage/HotelListing/index.tsx @@ -10,7 +10,7 @@ import { getIntl } from "@/i18n" import styles from "./hotelListing.module.css" -import { HotelListingProps } from "@/types/components/contentPage/hotelListing" +import type { HotelListingProps } from "@/types/components/contentPage/hotelListing" export default async function HotelListing({ image, @@ -22,45 +22,43 @@ export default async function HotelListing({ const intl = await getIntl() return ( -
  • -
    -
    - -
    -
    -
    - - {name} -
    - {address} -
    - -
    - - {`${distance} ${intl.formatMessage({ id: "km to city center" })}`} - +
    +
    + +
    +
    +
    + + {name} +
    + {address} +
    +
    + + {`${distance} ${intl.formatMessage({ id: "km to city center" })}`} +
    - {description} - -
    -
    -
  • + + {description} + + + ) }