web-next: migrar toda la UI al tema real nw-ryu

Reescritura completa del frontend Next.js del sistema visual Tailwind
"simulado" al tema Django original (nw-ryu), para paridad pixel con la
web actual antes del cutover.

- Tema real: copia de static/nw-themes/nw-ryu + favicons a public/, el
  layout carga el novavow-style.css real de ultimo (gana la cascada sobre
  Tailwind) + Font Awesome.
- Shell replicando los partials Django: SiteHeader, Video, Social, Footer,
  ServerClock; home con estructura real (main-page/middle-content/...).
- Helpers reutilizables: PageShell (main-page > middle-content > body-content
  > title-content) y ServiceBox (title-box-content + back-to-account).
- Paginas migradas a clases reales del tema (fieldset/tool-button/char-box/
  item-box/info-box-light/max-center-table/alert-message/botones reales),
  eliminando el markup Tailwind (.nw-btn/.nw-card/.nw-input):
  auth (login/register/recover/reset/select-account/activate),
  cuenta + servicios de personaje (revive/unstuck/rename/customize/
  change-race/change-faction/level-up/gold/transfer + pago Stripe),
  ajustes (change-password/change-email/security-token),
  comunidad (vote-points/recruit/battlepay), foro completo, y
  admin (indice + 7 secciones + los Admin*Manager).
- Se conserva el bilingue (next-intl); claves nuevas en messages/es|en.json.

Verificado: typecheck + build OK; rutas protegidas 307->login; sin
MISSING_MESSAGE; cero Tailwind residual (solo .nw-tool-btn/.nw-page,
clases propias en globals.css).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-13 09:54:58 +00:00
parent 8bb18838ff
commit cc158d3819
230 changed files with 7899 additions and 1386 deletions
+28 -26
View File
@@ -33,35 +33,37 @@ export function BattlepayList({ orders }: { orders: BattlepayOrder[] }) {
}
}
if (orders.length === 0) return <p className="text-amber-200/70">{t('noOrders')}</p>
if (orders.length === 0) return <p className="second-brown">{t('noOrders')}</p>
return (
<div>
{error && <p className="mb-4 text-red-400">{error}</p>}
<ul className="space-y-3">
{orders.map((o) => (
<li key={o.id} className="flex flex-wrap items-center justify-between gap-3 nw-card">
<div>
<p className="font-semibold text-amber-300">{o.product_name}</p>
<p className="text-xs text-amber-200/50">
{t('reference')}: {o.reference}
{o.created_at ? ` · ${new Date(o.created_at * 1000).toLocaleDateString()}` : ''}
</p>
</div>
<div className="flex items-center gap-3">
<span className="font-semibold text-nw-gold-light">{o.price_eur.toFixed(2)} </span>
<button
type="button"
onClick={() => pay(o.reference)}
disabled={busy !== null}
className="nw-btn text-sm disabled:opacity-60"
>
{busy === o.reference ? t('redirecting') : t('pay')}
</button>
</div>
</li>
))}
</ul>
<div className="alert-message" style={{ display: error ? 'block' : 'none' }}>
{error && <span className="red-form-response">{error}</span>}
</div>
<table className="max-center-table">
<tbody>
{orders.map((o) => (
<tr key={o.id} className="info-box-light">
<td className="separate">
<span className="yellow-info">{o.product_name}</span>
<br />
<span className="third-brown small-font">
{t('reference')}: {o.reference}
{o.created_at ? ` · ${new Date(o.created_at * 1000).toLocaleDateString()}` : ''}
</span>
</td>
<td className="real-info-box">
<span className="yellow-info">{o.price_eur.toFixed(2)} </span>
</td>
<td className="real-info-box">
<button type="button" onClick={() => pay(o.reference)} disabled={busy !== null}>
{busy === o.reference ? t('redirecting') : t('pay')}
</button>
</td>
</tr>
))}
</tbody>
</table>
</div>
)
}