diff --git a/app/[lang]/(live)/@bookingwidget/hotelreservation/[...path]/page.tsx b/app/[lang]/(live)/@bookingwidget/hotelreservation/[...path]/page.tsx
new file mode 100644
index 000000000..1a77e08c1
--- /dev/null
+++ b/app/[lang]/(live)/@bookingwidget/hotelreservation/[...path]/page.tsx
@@ -0,0 +1,21 @@
+import { env } from "@/env/server"
+
+import BookingWidget, { preload } from "@/components/BookingWidget"
+
+import { PageArgs } from "@/types/params"
+
+export default async function BookingWidgetHotelReservationPage({
+ searchParams,
+}: PageArgs<{}, URLSearchParams>) {
+ if (env.HIDE_BOOKINGWIDGET_HOTELRESERVATION_PATH) {
+ return null
+ }
+
+ preload()
+
+ return
+}
+
+// TODO: This should just:
+// export { default } from "../page"
+// when current web is no more
diff --git a/app/[lang]/(live)/@footer/[...path]/page.tsx b/app/[lang]/(live)/@footer/[...path]/page.tsx
index 1a77e08c1..03a82e5f5 100644
--- a/app/[lang]/(live)/@footer/[...path]/page.tsx
+++ b/app/[lang]/(live)/@footer/[...path]/page.tsx
@@ -1,21 +1 @@
-import { env } from "@/env/server"
-
-import BookingWidget, { preload } from "@/components/BookingWidget"
-
-import { PageArgs } from "@/types/params"
-
-export default async function BookingWidgetHotelReservationPage({
- searchParams,
-}: PageArgs<{}, URLSearchParams>) {
- if (env.HIDE_BOOKINGWIDGET_HOTELRESERVATION_PATH) {
- return null
- }
-
- preload()
-
- return
-}
-
-// TODO: This should just:
-// export { default } from "../page"
-// when current web is no more
+export { default } from "../page"