feat: refine admin workflows and deployment packaging

This commit is contained in:
Codex
2026-05-11 14:19:29 +08:00
parent 4e226e7eda
commit 8529276a6f
86 changed files with 3240 additions and 598 deletions
@@ -2,7 +2,6 @@
import { useCallback, useEffect, useMemo, useState } from 'react'
import type { FormEvent } from 'react'
import Link from 'next/link'
type CaptchaResponse = {
expiresAt: number
@@ -184,9 +183,6 @@ export function AdminLoginForm() {
{error}
</p>
) : null}
<Link className="eversolo-login-form__forgot" href="/admin/forgot" prefetch={false}>
Forgot password?
</Link>
<button className="btn btn--style-primary btn--size-large" disabled={submitting || loadingCaptcha} type="submit">
{submitting ? 'Logging in...' : 'Login'}
</button>