feat: 增加线路优化注册功能
CI / build (20.15.1) (push) Successful in 21m47s

This commit is contained in:
2025-12-09 21:10:05 -08:00
parent a5b4302ab7
commit c79de38d54
6 changed files with 705 additions and 1 deletions
@@ -0,0 +1,10 @@
'use client';
import EmailAuthForm2 from '@/app/auth/email2/auth-form';
export default function RegisterPage() {
return (
<div className='container w-[496px] py-8'>
<EmailAuthForm2 isRedirect={true} />
</div>
);
}