- Replace all mock data with real API calls across pages (issues, agents, inbox, settings) - Add AuthProvider context with JWT login/logout, member/agent name resolution - Implement login page with email-based auth flow - Add settings page with workspace editing and member list - Wire up real-time WebSocket for live issue updates Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
103 B
TypeScript
5 lines
103 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function Home() {
|
|
redirect("/issues");
|
|
}
|