diff --git a/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.module.css new file mode 100644 index 000000000..509c07684 --- /dev/null +++ b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.module.css @@ -0,0 +1,12 @@ +.main { + width: var(--max-width-content); + padding: var(--Spacing-x5) var(--Spacing-x1); + margin-left: auto; + margin-right: auto; +} + +.form { + max-width: 640px; + margin-left: auto; + margin-right: auto; +} diff --git a/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.tsx new file mode 100644 index 000000000..1ff30e14e --- /dev/null +++ b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.tsx @@ -0,0 +1,13 @@ +import FindMyBooking from "@/components/HotelReservation/FindMyBooking" + +import styles from "./page.module.css" + +export default function GetBookingPage() { + return ( +
+
+ +
+
+ ) +} diff --git a/apps/scandic-web/components/Current/Header/MainMenu/index.tsx b/apps/scandic-web/components/Current/Header/MainMenu/index.tsx index 1c1c4aa8e..70066facf 100644 --- a/apps/scandic-web/components/Current/Header/MainMenu/index.tsx +++ b/apps/scandic-web/components/Current/Header/MainMenu/index.tsx @@ -2,6 +2,7 @@ import { usePathname } from "next/navigation" import { useIntl } from "react-intl" +import { findMyBooking } from "@/constants/routes/findMyBooking" import { logout } from "@/constants/routes/handleAuth" import { myPages } from "@/constants/routes/myPages" import useDropdownStore from "@/stores/main-menu" @@ -147,9 +148,12 @@ export function MainMenu({
  • - + {intl.formatMessage({ id: "Find booking" })} - +