feat(SW-2240): Added robots no-index and no-follow metadata to hotelreservation pages

Approved-by: Michael Zetterberg
This commit is contained in:
Erik Tiekstra
2025-04-09 05:31:02 +00:00
parent 7ec86e7301
commit 701a80b7c1

View File

@@ -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) {