Stop the slugifier from deleting the letter D-stroke

This commit is contained in:
2026-08-19 13:07:13 +07:00
parent 24c55d1627
commit 4490a1abf0
14 changed files with 739 additions and 198 deletions
+13
View File
@@ -0,0 +1,13 @@
import { LoginForm } from "../_components/LoginForm";
/**
* Login for any doctor, admin or not. Before this existed, `AccountMenu`'s
* "Đăng nhập" button sent everyone to `/admin/login`, which refused every
* non-admin account *after* already signing them in.
*
* Signing in stays entirely optional: anonymous chat is unchanged, and this
* page says so rather than implying an account is required.
*/
export default function LoginPage() {
return <LoginForm heading="Đăng nhập" />;
}