import { redirect } from "next/navigation"; // Destination for /calls is Archive (/search) per UI_REDESIGN.md §3/§5.4, but // /search needs paged server-side search (order_by/limit/cursor on // internal/firestore.py, a GET /calls/search route) that doesn't exist yet — // tracked as UI_REDESIGN.md chunk 12, blocked on Gitea #17/#18. Until then // this redirects to Incidents, same as the chunk 4 spec's interim. export default function CallsPageRedirect() { redirect("/incidents"); }