islandflow/apps/web/app/charts/page.tsx
dirtydishes c0219233d3 Simplify web terminal routes and home layout
- Redirect legacy signals/charts/replay pages to home
- Trim nav and update live subscriptions for home and tape
- Refresh terminal topbar and layout behavior
2026-05-04 13:42:47 -04:00

7 lines
138 B
TypeScript

import { redirect } from "next/navigation";
export const dynamic = "force-dynamic";
export default function Page() {
redirect("/");
}