24 lines
522 B
TypeScript
24 lines
522 B
TypeScript
/**
|
|
* Página de Auditoría
|
|
*/
|
|
|
|
export default function AuditPage() {
|
|
return (
|
|
<div className="p-6 space-y-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-foreground">Auditoría</h1>
|
|
<p className="text-muted-foreground mt-1">
|
|
Logs de cambios y versiones
|
|
</p>
|
|
</div>
|
|
|
|
<div className="bg-card border border-border rounded-xl p-6">
|
|
<p className="text-muted-foreground">
|
|
Funcionalidad en desarrollo...
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|