mirror of
https://github.com/arthur-pbty/flint.git
synced 2026-08-02 04:37:57 +02:00
- add Discord OAuth2 authentication - allow users to register their bots via token - implement dynamic bot start/stop system - store bots in database (multi-tenant) - replace single-bot env setup with scalable architecture
6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function HomePage() {
|
|
redirect("/dashboard");
|
|
}
|