import { redirect } from "next/navigation"; // WorkClaw signs in at /sign-in; our canonical route is /login (the workspace // redirect, the backend /api/auth/login, and the E2E flow all use it). Keep // the familiar URL working by redirecting here. export default function SignInPage() { redirect("/login"); }