added website navigation structur

This commit is contained in:
2025-10-08 15:03:17 +02:00
parent a20998ae25
commit 54eaa86924
10 changed files with 886 additions and 191 deletions

View File

@@ -0,0 +1,28 @@
// frontend/src/pages/Employees/EmployeeManagement.tsx
import React from 'react';
const EmployeeManagement: React.FC = () => {
return (
<div>
<h1>👥 Mitarbeiter Verwaltung</h1>
<div style={{
padding: '40px',
textAlign: 'center',
backgroundColor: '#f8f9fa',
borderRadius: '8px',
border: '2px dashed #dee2e6',
marginTop: '20px'
}}>
<div style={{ fontSize: '48px', marginBottom: '20px' }}>👥</div>
<h3>Mitarbeiter Übersicht</h3>
<p>Hier können Sie Mitarbeiter verwalten und deren Verfügbarkeiten einsehen.</p>
<p style={{ fontSize: '14px', color: '#6c757d' }}>
Diese Seite wird demnächst mit Funktionen gefüllt.
</p>
</div>
</div>
);
};
export default EmployeeManagement;