diff --git a/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/layout.tsx index a8fd03992..7d99ab2d7 100644 --- a/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/layout.tsx +++ b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/layout.tsx @@ -2,6 +2,15 @@ import { notFound } from "next/navigation" import { env } from "@/env/server" +import type { Metadata } from "next" + +export const metadata: Metadata = { + robots: { + index: false, + follow: false, + }, +} + export default function HotelReservationLayout({ children, }: React.PropsWithChildren) {