Spaces:
Running
Running
| import React from 'react'; | |
| import { ReverseAuditPanel } from '../components/dashboard/ReverseAuditPanel'; | |
| const ReverseAudit: React.FC = () => { | |
| return ( | |
| <div style={{ padding: '2rem', maxWidth: '1200px', margin: '0 auto', width: '100%' }}> | |
| <div style={{ marginBottom: '2rem' }}> | |
| <h1 style={{ fontSize: '2rem', fontWeight: 800, color: 'var(--text-primary)', marginBottom: '0.5rem' }}> | |
| Reverse Audit | |
| </h1> | |
| <p style={{ color: 'var(--text-secondary)' }}> | |
| Zaawansowane sprawdzanie wniosków pod kątem zgodności z regulaminem. | |
| </p> | |
| </div> | |
| <ReverseAuditPanel /> | |
| </div> | |
| ); | |
| }; | |
| export default ReverseAudit; | |