diff --git a/web-next/app/[locale]/page.tsx b/web-next/app/[locale]/page.tsx index aa462f6..2efeadc 100644 --- a/web-next/app/[locale]/page.tsx +++ b/web-next/app/[locale]/page.tsx @@ -19,12 +19,10 @@ function formatFecha(iso: string | Date | null): string { if (!iso) return '' const d = new Date(iso) if (isNaN(d.getTime())) return String(iso) - return d.toLocaleString('es-ES', { - day: '2-digit', - month: '2-digit', + return d.toLocaleDateString('es-ES', { + day: 'numeric', + month: 'long', year: 'numeric', - hour: '2-digit', - minute: '2-digit', }) } @@ -127,7 +125,7 @@ export default async function HomePage({ params }: { params: Promise<{ locale: s

{n.titulo}

{formatFecha(n.fecha)} -