refactor: rename admin to manage in layout, sidebar, and redirects

This commit is contained in:
2026-04-29 01:31:44 +08:00
parent b68bf36bff
commit 6642501b91
3 changed files with 16 additions and 17 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import { redirect } from "next/navigation"
export default function AdminPage() {
redirect("/admin/users")
export default function ManagePage() {
redirect("/manage/users")
}