Terminado sprint 2A

This commit is contained in:
markosbenitez
2026-06-02 10:27:52 -03:00
parent 418c91fb12
commit 0f376a8b75
81 changed files with 5379 additions and 46 deletions

15
app/loading.tsx Normal file
View File

@@ -0,0 +1,15 @@
export default function Loading() {
return (
<div className="loading-wrapper" role="status" aria-label="Cargando encuesta...">
<div className="skeleton" style={{ height: 32, width: '60%', marginBottom: 16 }} />
<div className="skeleton" style={{ height: 16, width: '40%', marginBottom: 32 }} />
{Array.from({ length: 4 }).map((_, i) => (
<div
key={i}
className="skeleton"
style={{ height: 88, marginBottom: 12, borderRadius: 8 }}
/>
))}
</div>
)
}