import { NextResponse } from "next/server" import { bookingFlow } from "@/constants/routes/hotelReservation" import type { NextMiddleware } from "next/server" import type { MiddlewareMatcher } from "@/types/middleware" export const middleware: NextMiddleware = () => { return NextResponse.next() } export const matcher: MiddlewareMatcher = (request) => { return bookingFlow.includes(request.nextUrl.pathname) }