mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-12-01 06:55:45 +01:00
added website navigation structur
This commit is contained in:
28
frontend/src/pages/Employees/EmployeeManagement.tsx
Normal file
28
frontend/src/pages/Employees/EmployeeManagement.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user