New Frontend

This commit is contained in:
Urtzi Alfaro
2025-08-16 20:13:40 +02:00
parent 23c5f50111
commit 8914786973
35 changed files with 4223 additions and 538 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
const PerformanceKPIsPage: React.FC = () => {
return (
<div className="p-6 max-w-7xl mx-auto">
<div className="mb-8">
<h1 className="text-2xl font-bold text-gray-900">KPIs de Rendimiento</h1>
</div>
<div className="bg-white rounded-xl shadow-sm border border-gray-200 p-8 text-center">
<p className="text-gray-500">KPIs de rendimiento en desarrollo</p>
</div>
</div>
);
};
export default PerformanceKPIsPage;