import { redirect } from "next/navigation";

/**
 * Import no longer has a screen — it is a modal on the guest list, where the destination
 * event is already chosen (design D1, D4).
 *
 * This file stays as a redirect rather than being deleted. The host was told to come here by
 * the user guide and by their own bookmarks, and a 404 would read as the feature having been
 * removed rather than moved. It also stays inside the `(protected)` layout, so an unauthenticated
 * hit meets the session check before it meets the redirect.
 */
export default function ImportPage() {
  redirect("/admin/guests");
}
