feat(characters): use local character catalog

This commit is contained in:
2026-07-17 16:03:18 +08:00
parent a210a98d98
commit b3ebd5cf3b
96 changed files with 1023 additions and 522 deletions
+3 -2
View File
@@ -7,8 +7,9 @@
import { redirect } from "next/navigation";
import { ROUTES } from "@/router/routes";
import { DEFAULT_CHARACTER_SLUG } from "@/data/constants/character";
import { getCharacterRoutes } from "@/router/routes";
export default function Home() {
redirect(ROUTES.splash);
redirect(getCharacterRoutes(DEFAULT_CHARACTER_SLUG).splash);
}