chiminaca commited on
Commit
02200ef
·
verified ·
1 Parent(s): d70a316

now please a usefull subpage with kontext fitted features of the card of the dashbaord page "Technische Bewertung

Browse files
Files changed (2) hide show
  1. technische-bewertung.html +302 -0
  2. tools.html +1 -1
technische-bewertung.html ADDED
@@ -0,0 +1,302 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="de">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Technische Bewertung - ShipBroker Navigator</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
13
+ body {
14
+ font-family: 'Inter', sans-serif;
15
+ }
16
+ .nav-gradient {
17
+ background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
18
+ }
19
+ .progress-ring {
20
+ transition: stroke-dashoffset 0.3s;
21
+ transform: rotate(-90deg);
22
+ transform-origin: 50% 50%;
23
+ }
24
+ .section-card {
25
+ transition: all 0.3s ease;
26
+ }
27
+ .section-card:hover {
28
+ transform: translateY(-2px);
29
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="bg-gray-50">
34
+ <!-- Navigation -->
35
+ <nav class="nav-gradient text-white shadow-lg">
36
+ <div class="container mx-auto px-4 py-4">
37
+ <div class="flex justify-between items-center">
38
+ <div class="flex items-center space-x-2">
39
+ <i data-feather="anchor" class="text-blue-300"></i>
40
+ <span class="text-xl font-bold">ShipBroker Navigator</span>
41
+ </div>
42
+ <div class="hidden md:flex space-x-6">
43
+ <a href="index.html" class="hover:text-blue-200 transition-colors">Dashboard</a>
44
+ <a href="dokumente.html" class="hover:text-blue-200 transition-colors">Dokumente</a>
45
+ <a href="analysen.html" class="hover:text-blue-200 transition-colors">Analysen</a>
46
+ <a href="tools.html" class="hover:text-blue-200 transition-colors">Tools</a>
47
+ <a href="user.html" class="hover:text-blue-200 transition-colors">Profil</a>
48
+ </div>
49
+ <div class="flex items-center space-x-4">
50
+ <div class="bg-blue-500 rounded-full p-2">
51
+ <i data-feather="user" class="w-5 h-5"></i>
52
+ </div>
53
+ <span class="hidden md:inline">Manfred Nachtigal</span>
54
+ </div>
55
+ </div>
56
+ </div>
57
+ </nav>
58
+
59
+ <!-- Header -->
60
+ <div class="bg-white shadow-sm">
61
+ <div class="container mx-auto px-4 py-8">
62
+ <div class="flex flex-col md:flex-row justify-between items-start md:items-center">
63
+ <div>
64
+ <h1 class="text-3xl font-bold text-gray-800">Technische Bewertung</h1>
65
+ <p class="text-gray-600 mt-2">Detailierte Analyse der Schiffstechnik und -ausstattung</p>
66
+ </div>
67
+ <div class="mt-4 md:mt-0">
68
+ <button class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-2 rounded-lg font-semibold transition-colors flex items-center">
69
+ <i data-feather="download" class="mr-2"></i>
70
+ Bericht exportieren
71
+ </button>
72
+ </div>
73
+ </div>
74
+ </div>
75
+
76
+ <!-- Main Content -->
77
+ <div class="container mx-auto px-4 py-8">
78
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
79
+ <!-- Schiffsinformationen -->
80
+ <div class="lg:col-span-2 space-y-6">
81
+ <!-- Schiff Details -->
82
+ <div class="bg-white rounded-xl shadow-md p-6 section-card">
83
+ <h2 class="text-xl font-semibold mb-4 text-gray-800">Schiffsinformationen</h2>
84
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
85
+ <div>
86
+ <label class="block text-sm font-medium text-gray-700 mb-2">Schiffsname</label>
87
+ <input type="text" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="z.B. MS Loreley" value="MS Loreley">
88
+ </div>
89
+ <div>
90
+ <label class="block text-sm font-medium text-gray-700 mb-2">IMO-Nummer</label>
91
+ <input type="text" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="IMO 1234567" value="IMO 9456789">
92
+ </div>
93
+ <div>
94
+ <label class="block text-sm font-medium text-gray-700 mb-2">Baujahr</label>
95
+ <input type="number" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Jahr" value="2018">
96
+ </div>
97
+ <div>
98
+ <label class="block text-sm font-medium text-gray-700 mb-2">Schiffstyp</label>
99
+ <select class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" class="w-full px-3 py-2 border border-gray-300 rounded-lg">
100
+ <option>Containerschiff</option>
101
+ <option>Tankschiff</option>
102
+ <option>Massengutfrachter</option>
103
+ <option>RoRo-Schiff</option>
104
+ <option>Passagierschiff</option>
105
+ <option>Fischereifahrzeug</option>
106
+ </select>
107
+ </div>
108
+ </div>
109
+ </div>
110
+
111
+ <!-- Technische Systeme -->
112
+ <div class="bg-white rounded-xl shadow-md p-6 section-card">
113
+ <h2 class="text-xl font-semibold mb-4 text-gray-800">Technische Systeme</h2>
114
+ <div class="space-y-4">
115
+ <div class="flex items-center justify-between p-4 bg-gray-50 rounded-lg">
116
+ <div class="flex items-center">
117
+ <div class="bg-blue-100 p-2 rounded-lg mr-4">
118
+ <i data-feather="cpu" class="text-blue-600"></i>
119
+ </div>
120
+ <div>
121
+ <h3 class="font-semibold">Antriebsanlage</h3>
122
+ <p class="text-sm text-gray-600">2 × MAN B&W 8L60MC, 19.500 kW</p>
123
+ </div>
124
+ </div>
125
+ <span class="px-3 py-1 bg-green-100 text-green-800 text-sm font-medium rounded-full">Funktionsfähig</span>
126
+ </div>
127
+ <div class="flex items-center justify-between p-4 bg-gray-50 rounded-lg">
128
+ <div class="flex items-center">
129
+ <div class="bg-green-100 p-2 rounded-lg mr-4">
130
+ <i data-feather="wind" class="text-green-600"></i>
131
+ </div>
132
+ <div>
133
+ <h3 class="font-semibold">Elektrische Anlage</h3>
134
+ <p class="text-sm text-gray-600">4 × Dieselgeneratoren, 2.800 kW</p>
135
+ </div>
136
+ </div>
137
+ <span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-sm font-medium rounded-full">Überprüfung erforderlich</span>
138
+ </div>
139
+ <div class="flex items-center justify-between p-4 bg-gray-50 rounded-lg">
140
+ <div class="flex items-center">
141
+ <div class="bg-purple-100 p-2 rounded-lg mr-4">
142
+ <i data-feather="thermometer" class="text-purple-600"></i>
143
+ </div>
144
+ <div>
145
+ <h3 class="font-semibold">Klimaanlage & Lüftung</h3>
146
+ <p class="text-sm text-gray-600">Zentralklimaanlage, teilweise veraltet</p>
147
+ </div>
148
+ </div>
149
+ <span class="px-3 py-1 bg-red-100 text-red-800 text-sm font-medium rounded-full">Modernisierung empfohlen</span>
150
+ </div>
151
+ </div>
152
+ </div>
153
+
154
+ <!-- Ausstattungsbewertung -->
155
+ <div class="bg-white rounded-xl shadow-md p-6 section-card">
156
+ <h2 class="text-xl font-semibold mb-4 text-gray-800">Ausstattungsbewertung</h2>
157
+ <div class="space-y-4">
158
+ <div>
159
+ <div class="flex justify-between mb-1">
160
+ <span class="text-sm font-medium text-gray-700">Navigationsausrüstung</span>
161
+ <span class="text-sm font-medium text-green-600">85%</span>
162
+ </div>
163
+ <div class="w-full bg-gray-200 rounded-full h-2">
164
+ <div class="bg-green-500 h-2 rounded-full" style="width: 85%"></div>
165
+ </div>
166
+ <div>
167
+ <div class="flex justify-between mb-1">
168
+ <span class="text-sm font-medium text-gray-700">Sicherheitsausrüstung</span>
169
+ <span class="text-sm font-medium text-blue-600">92%</span>
170
+ </div>
171
+ <div class="w-full bg-gray-200 rounded-full h-2">
172
+ <div class="bg-blue-500 h-2 rounded-full" style="width: 92%"></div>
173
+ </div>
174
+ <div>
175
+ <div class="flex justify-between mb-1">
176
+ <span class="text-sm font-medium text-gray-700">Kommunikationssysteme</span>
177
+ <span class="text-sm font-medium text-yellow-600">78%</span>
178
+ </div>
179
+ <div class="w-full bg-gray-200 rounded-full h-2">
180
+ <div class="bg-yellow-500 h-2 rounded-full" style="width: 78%"></div>
181
+ </div>
182
+ </div>
183
+ </div>
184
+
185
+ <!-- Zustandsbewertung -->
186
+ <div class="bg-white rounded-xl shadow-md p-6 section-card">
187
+ <h2 class="text-xl font-semibold mb-4 text-gray-800">Zustandsbewertung</h2>
188
+ <div class="grid grid-cols-2 gap-4">
189
+ <div class="text-center p-4 bg-blue-50 rounded-lg">
190
+ <i data-feather="shield" class="w-8 h-8 text-blue-600 mx-auto mb-2"></i>
191
+ <h3 class="font-semibold text-gray-800">Gesamtzustand</h3>
192
+ <div class="text-2xl font-bold text-blue-600 mt-2">Gut</h3>
193
+ <p class="text-sm text-gray-600">85/100 Punkten</p>
194
+ </div>
195
+ <div class="text-center p-4 bg-green-50 rounded-lg">
196
+ <i data-feather="check-circle" class="w-8 h-8 text-green-600 mx-auto mb-2"></i>
197
+ <h3 class="font-semibold text-gray-800">Wartungsstatus</h3>
198
+ <div class="text-2xl font-bold text-green-600 mt-2">Ausgezeichnet</h3>
199
+ <p class="text-sm text-gray-600">Letzte Inspektion: 03/2024</p>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Sidebar -->
206
+ <div class="space-y-6">
207
+ <!-- Zusammenfassung -->
208
+ <div class="bg-white rounded-xl shadow-md p-6">
209
+ <h3 class="text-lg font-semibold mb-4 text-gray-800">Bewertungszusammenfassung</h3>
210
+ <div class="space-y-3">
211
+ <div class="flex justify-between items-center">
212
+ <span class="text-gray-700">Gesamtbewertung</span>
213
+ <div class="relative w-16 h-16">
214
+ <svg class="w-16 h-16">
215
+ <circle class="text-gray-200" stroke-width="8" stroke="currentColor" fill="transparent" r="28" cx="32" cy="32"/>
216
+ <circle class="text-purple-500" stroke-width="8" stroke-dasharray="175.929, 175.929" stroke-dashoffset="26.389" stroke-linecap="round" stroke="currentColor" fill="transparent" r="28" cx="32" cy="32" style="stroke-dashoffset: 26.389;"/>
217
+ </svg>
218
+ <div class="absolute inset-0 flex items-center justify-center">
219
+ <span class="text-sm font-bold text-purple-600">85%</span>
220
+ </div>
221
+ </div>
222
+ <div class="space-y-2">
223
+ <div class="flex justify-between text-sm">
224
+ <span class="text-gray-600">Technischer Zustand</span>
225
+ <span class="font-semibold text-gray-800">Gut</span>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Aktionen -->
230
+ <div class="bg-white rounded-xl shadow-md p-6">
231
+ <h3 class="text-lg font-semibold mb-4 text-gray-800">Schnellaktionen</h3>
232
+ <div class="space-y-3">
233
+ <button class="w-full bg-purple-500 hover:bg-purple-600 text-white py-3 rounded-lg font-semibold transition-colors flex items-center justify-center">
234
+ <i data-feather="file-text" class="mr-2"></i>
235
+ Detailbericht erstellen
236
+ </button>
237
+ <button class="w-full bg-blue-500 hover:bg-blue-600 text-white py-3 rounded-lg font-semibold transition-colors flex items-center justify-center">
238
+ <i data-feather="download" class="mr-2"></i>
239
+ PDF Export
240
+ </button>
241
+ <button class="w-full bg-green-500 hover:bg-green-600 text-white py-3 rounded-lg font-semibold transition-colors flex items-center justify-center">
242
+ <i data-feather="share-2" class="mr-2"></i>
243
+ Mit Kunden teilen
244
+ </button>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Expertenbewertung -->
249
+ <div class="bg-white rounded-xl shadow-md p-6">
250
+ <h3 class="text-lg font-semibold mb-4 text-gray-800">Expertenbewertung</h3>
251
+ <div class="space-y-4">
252
+ <div>
253
+ <label class="block text-sm font-medium text-gray-700 mb-2">Bewertungsnotiz</label>
254
+ <textarea class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" rows="4" placeholder="Fügen Sie hier Ihre Expertenbewertung hinzu...">Das Schiff befindet sich in einem guten technischen Zustand. Die Antriebsanlage ist modern und gut gewartet. Empfehlung: Modernisierung der Klimaanlage innerhalb der nächsten 2 Jahre.</textarea>
255
+ </div>
256
+ <button class="w-full bg-yellow-500 hover:bg-yellow-600 text-white py-3 rounded-lg font-semibold transition-colors">
257
+ Bewertung speichern
258
+ </button>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </div>
263
+
264
+ <!-- Footer -->
265
+ <footer class="bg-gray-800 text-white py-8 mt-16">
266
+ <div class="container mx-auto px-4">
267
+ <div class="flex flex-col md:flex-row justify-between items-center">
268
+ <div class="mb-4 md:mb-0">
269
+ <div class="flex items-center space-x-2">
270
+ <i data-feather="anchor" class="text-blue-300"></i>
271
+ <span class="text-lg font-bold">ShipBroker Navigator</span>
272
+ </div>
273
+ <p class="text-gray-400 mt-2">Spezialisiert auf rechtliche und technische Schiffsbewertungen</p>
274
+ </div>
275
+ <div class="flex space-x-6">
276
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">Impressum</a>
277
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">Datenschutz</a>
278
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">Kontakt</a>
279
+ </div>
280
+ </div>
281
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
282
+ <p>&copy; 2024 ShipBroker Legal Tech Navigator. Alle Rechte vorbehalten.</p>
283
+ </div>
284
+ </div>
285
+ </footer>
286
+
287
+ <script>
288
+ feather.replace();
289
+
290
+ // Progress bars animation
291
+ document.addEventListener('DOMContentLoaded', function() {
292
+ const progressBars = document.querySelectorAll('.w-full.bg-gray-200 > div');
293
+ progressBars.forEach(bar => {
294
+ const width = bar.style.width;
295
+ bar.style.width = '0%';
296
+ setTimeout(() => {
297
+ bar.style.width = width;
298
+ }, 100);
299
+ });
300
+ </script>
301
+ </body>
302
+ </html>
tools.html CHANGED
@@ -40,7 +40,7 @@
40
  <a href="analysen.html" class="hover:text-blue-200 transition-colors">Analysen</a>
41
  <a href="#" class="text-blue-200 font-semibold">Tools</a>
42
  </div>
43
- <div class="flex items-center space-x-4">
44
  <div class="bg-blue-500 rounded-full p-2">
45
  <i data-feather="user" class="w-5 h-5"></i>
46
  </div>
 
40
  <a href="analysen.html" class="hover:text-blue-200 transition-colors">Analysen</a>
41
  <a href="#" class="text-blue-200 font-semibold">Tools</a>
42
  </div>
43
+ <div class="flex items-center space-x-4">
44
  <div class="bg-blue-500 rounded-full p-2">
45
  <i data-feather="user" class="w-5 h-5"></i>
46
  </div>