+
+ {intl.formatMessage({ id: "Summary" })}
+
+
+ Type of room: Standard Room
+ 1648 SEK
+
+
+ Type of bed: King Bed
+ 0 SEK
+
+
+ Breakfast: Breakfast Buffé
+ 198 SEK
+
+
+ Flexibility: Free Rebooking
+ 200 SEK
+
+
+ )
+}
diff --git a/components/HotelReservation/BookingConfirmation/ConfirmationTimes/confirmationTimes.module.css b/components/HotelReservation/BookingConfirmation/ConfirmationTimes/confirmationTimes.module.css
new file mode 100644
index 000000000..67b33ac0d
--- /dev/null
+++ b/components/HotelReservation/BookingConfirmation/ConfirmationTimes/confirmationTimes.module.css
@@ -0,0 +1,19 @@
+.section {
+ display: flex;
+ justify-content: space-between;
+ padding: var(--Spacing-x2);
+ border-radius: var(--Corner-radius-Small);
+ background-color: var(--Base-Surface-Primary-dark-Normal);
+ width: 100%;
+ max-width: 365px;
+}
+
+.breakfast,
+.checkIn,
+.checkOut {
+ display: flex;
+ flex-direction: column;
+ gap: var(--Spacing-x-half);
+ font-family: var(--typography-Caption-Regular-fontFamily);
+ font-size: var(--typography-Caption-Regular-fontSize);
+}
diff --git a/components/HotelReservation/BookingConfirmation/ConfirmationTimes/index.tsx b/components/HotelReservation/BookingConfirmation/ConfirmationTimes/index.tsx
new file mode 100644
index 000000000..19bb0d71f
--- /dev/null
+++ b/components/HotelReservation/BookingConfirmation/ConfirmationTimes/index.tsx
@@ -0,0 +1,29 @@
+import React from "react"
+
+import Body from "@/components/TempDesignSystem/Text/Body"
+import { getIntl } from "@/i18n"
+
+import styles from "./confirmationTimes.module.css"
+
+export default async function ConfirmationTimes() {
+ const intl = await getIntl()
+ return (
+