Primera version de frontend

This commit is contained in:
2025-07-28 11:00:25 -06:00
parent 748e37cbcc
commit 0dac802736
78 changed files with 18757 additions and 0 deletions

13
src/pages/Debug.jsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
export default function Debug() {
return (
<div style={{ padding: '20px', backgroundColor: '#f0f0f0', minHeight: '100vh' }}>
<h1 style={{ color: 'red', fontSize: '24px' }}>🐛 Debug Page</h1>
<p>Si ves esto, React está funcionando correctamente.</p>
<p>Fecha y hora: {new Date().toLocaleString()}</p>
<p>Token en localStorage: {localStorage.getItem('access') ? 'SÍ' : 'NO'}</p>
<p>URL actual: {window.location.href}</p>
</div>
);
}