This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1241 lines (1230 loc) · 60.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DEalog - Ereigniskommunikation für Staat und Bürger:innen</title>
<meta
name="description"
content="Offizielle und aus behördlichen Quellen gespeiste Informationsplattform für Menschen, die in Krisenlagen nach relevanten und verlässlichen Informationen suchen!"
/>
<meta
name="keywords"
content="dealog, krisenkommunikation, offizielle krisenkommunikation, staatliche krisenkommunikation, information krisenlage, relevante information, verlässliche information, warnmeldung, gefahrenmeldung, wirvsvirus hackathon projekte, top20 wirvsvirus projekte, projekte govlab, projekte arnsberg, projekte bezirksregierung arnsberg, corona regel, corona regelung"
/>
<link
rel="stylesheet"
href="css/styles.css?c=1aa07b1e-1cb8-452a-83f7-acf0317de98a"
/>
<script
async
defer
data-domain="dealog.de"
src="https://plausible.io/js/plausible.js"
></script>
<script
type="module"
src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js"
></script>
<script
nomodule
src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine-ie11.min.js"
defer
></script>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
</head>
<body name="top">
<header>
<nav x-data="{ isOpen: false }" class="bg-white shadow-lg">
<div class="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
<div class="flex justify-between">
<div class="flex justify-center h-16">
<div class="flex">
<div class="flex items-center mr-2 -ml-2 md:hidden">
<!-- Mobile menu button -->
<button
@click="isOpen = !isOpen"
class="inline-flex items-center justify-center p-2 text-gray-400 rounded-md hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out"
aria-label="Main menu"
aria-expanded="false"
>
<svg
class="block w-6 h-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"
/>
</svg>
<svg
class="hidden w-6 h-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M6 18L18 6M6 6l12 12"
/>
</svg>
</button>
</div>
<div class="flex items-center flex-shrink-0">
<img
class="block w-auto h-8 lg:hidden"
src="images/dealog_iconlogo.svg"
alt="DEalog Logo"
/>
<img
class="hidden w-auto h-8 lg:block"
src="images/dealog_logo.svg"
alt="DEalog Logo"
/>
</div>
<div class="hidden md:ml-6 md:flex space-x-12">
<a
href="#buerger-innen"
class="inline-flex items-center px-1 pt-1 text-sm font-medium text-gray-500 border-b-2 border-transparent leading-5 transition duration-150 ease-in-out hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300"
>
Für Bürger:innen
</a>
<a
href="#staat"
class="inline-flex items-center px-1 pt-1 text-sm font-medium text-gray-500 border-b-2 border-transparent leading-5 transition duration-150 ease-in-out hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300"
>
Für den Staat
</a>
<a
href="#projekt"
class="inline-flex items-center px-1 pt-1 text-sm font-medium text-gray-500 border-b-2 border-transparent leading-5 transition duration-150 ease-in-out hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300"
>
Über das Projekt
</a>
<a
href="#team"
class="inline-flex items-center px-1 pt-1 text-sm font-medium text-gray-500 border-b-2 border-transparent leading-5 transition duration-150 ease-in-out hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300"
>
Das Team
</a>
</div>
</div>
</div>
<div class="flex items-center">
<div class="flex-shrink-0">
<a
href="#kontakt"
class="relative inline-flex items-center px-4 py-2 text-sm text-gray-100 bg-gray-800 border border-transparent leading-5 rounded-md shadow-sm hover:bg-gray-700 focus:outline-none focus:border-gray-700 focus:shadow-outline-gray active:bg-gray-600 transition ease-in-out duration-150"
>
Kontakt
</a>
</div>
</div>
</div>
</div>
<div
x-show="isOpen"
x-cloak
class="block md:hidden"
style="display: none"
>
<div class="pt-2 pb-3">
<a
href="#buerger-innen"
class="block py-2 pl-3 pr-4 text-base font-medium text-gray-600 whitespace-no-wrap border-l-4 border-transparent transition duration-150 ease-in-out sm:pl-5 sm:pr-6 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300"
>
Für Bürger:innen
</a>
<a
href="#staat"
class="block py-2 pl-3 pr-4 text-base font-medium text-gray-600 whitespace-no-wrap border-l-4 border-transparent transition duration-150 ease-in-out sm:pl-5 sm:pr-6 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300"
>
Für den Staat
</a>
<a
href="#projekt"
class="block py-2 pl-3 pr-4 text-base font-medium text-gray-600 whitespace-no-wrap border-l-4 border-transparent transition duration-150 ease-in-out sm:pl-5 sm:pr-6 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300"
>
Über das Projekt
</a>
<a
href="#team"
class="block py-2 pl-3 pr-4 text-base font-medium text-gray-600 whitespace-no-wrap border-l-4 border-transparent transition duration-150 ease-in-out sm:pl-5 sm:pr-6 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300"
>
Das Team
</a>
<hr class="mt-4" />
<a
href="#kontakt"
class="block py-2 pl-3 pr-4 mt-4 text-base font-medium text-gray-600 whitespace-no-wrap border-l-4 border-transparent transition duration-150 ease-in-out sm:pl-5 sm:pr-6 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300"
>
Kontakt
</a>
</div>
</div>
</nav>
</header>
<main class="text-gray-900">
<section
class="w-full px-2 mx-0 mt-12 sm:mt-32 sm:w-3/4 sm:px-0 sm:mx-auto"
>
<h3
class="block text-5xl font-semibold text-center sm:flex sm:flex-wrap sm:space-x-1 sm:justify-center"
>
<p>
<span class="-mb-1 border-b-4 border-gray-900">DEalog</span
><span class="hidden sm:inline"> | </span>
</p>
<p>
Dein <span class="-mb-1 border-b-4 border-red-500">Staat</span>.
</p>
<p>
Deine <span class="-mb-1 border-b-4 border-yellow-300">Infos</span>.
</p>
</h3>
<h2 class="mt-16 text-sm text-center text-gray-500">
Offizielle Ereigniskommunikation für Staat und Bürger:innen
</h2>
<div class="mt-12 sm:mx-auto sm:w-5/6 sm:mt-16">
<div
class="flex justify-center font-light text-gray-400 uppercase space-x-4 text-2xs"
>
<div class="flex flex-col items-center sm:items-end">
<div>gefördert durch</div>
<div class="h-full">
<div
class="flex flex-col items-center justify-start flex-none h-full mt-6 sm:flex-row sm:justify-end space-y-4 sm:space-y-0"
>
<div>
<img
class="sm:w-1/2 sm:h-1/2"
src="images/sponsors/wirvsvirus.png"
alt="wirvsvirus Logo"
/>
</div>
<div>
<img
class="sm:w-4/5 sm:h-4/5"
src="images/sponsors/bmbf.jpg"
alt="Bundesministerium für Bildung und Forschung Logo"
/>
</div>
</div>
</div>
</div>
<div class="flex flex-col items-center sm:items-start">
<div>in Kooperation mit</div>
<div class="h-full">
<div
class="flex flex-col items-center flex-none h-full mt-6 sm:flex-row space-y-4 sm:space-y-0"
>
<div>
<img
class="sm:w-1/2 sm:h-1/2"
src="images/sponsors/bbk.png"
alt="Bundesamt für Bevölkerungsschutz und Katastrophenhilfe Logo"
/>
</div>
<div class="pt-8 sm:pt-0">
<img
class="sm:w-1/2 sm:h-1/2"
src="images/sponsors/govlab.png"
alt="GovLab Arnsberg Logo"
/>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-24">
<img
src="images/side_visual.jpg"
alt="Smartphone-Screen mit DEalog-App"
/>
</div>
<div class="mt-12 sm:mt-20 sm:flex sm:justify-between">
<h1 class="w-full text-2xl font-semibold text-center sm:w-1/2">
<p>
Im DEalog mit den Bürger:innen -<br />
Staatliche Ereigniskommunikation
</p>
</h1>
<div
class="w-full px-4 mt-8 ml-0 text-lg text-gray-600 sm:mt-0 sm:px-0 sm:ml-4 sm:w-1/2 sm:text-sm space-y-4"
>
<p>
Für Menschen in informationsintensiven Krisenlagen in Deutschland,
die nach für sie relevanten und verlässlichen Informationen zu
bereits kommunizierten Warn- und Gefahrenmeldungen suchen, ist
DEalog die zentrale und aus behördlichen Quellen gespeiste
Informationsplattform.
</p>
<p>
Auf dieser sind die Warn- und Gefahrenmeldungen sowie die jeweils
im Zeitverlauf ergänzend zugehörigen Informationen einfach und
schnell an einem Ort zu finden.
</p>
</div>
</div>
<div class="mt-12 sm:mt-40">
<div class="text-lg text-center text-gray-400 uppercase sm:text-xs">
<h3 name="buerger-innen">DEalog für Bürger:innen</h3>
</div>
<h2 class="text-3xl font-semibold text-center sm:text-2xl">
Relevante Informationen aus erster Hand
</h2>
<div
class="block mt-8 sm:mt-20 sm:flex space-y-8 sm:space-y-0 space-x-0 sm:space-x-8"
>
<div class="flex flex-col items-center w-full sm:block sm:w-1/3">
<div>
<img
src="images/dependability.svg"
alt="Verlässlichkeit Icon"
/>
</div>
<h4 class="mt-8 text-2xl font-medium sm:text-base">
Verlässlichkeit
</h4>
<p class="px-4 mt-4 text-lg text-gray-700 sm:px-0 sm:text-sm">
DEalog stellt dir öffentliche Informationen direkt von deiner
Stadtverwaltung oder anderen staatlichen Stellen klar und
transparent nachvollziehbar zur Verfügung. Lästiges
Zusammensuchen und verifizieren von wichtigen Informationen
gehört der Vergangenheit an.
</p>
</div>
<div class="flex flex-col items-center w-full sm:block sm:w-1/3">
<div>
<img
src="images/clearness.svg"
alt="Übersichtlicher Newsfeed Icon"
/>
</div>
<h4 class="mt-8 text-2xl font-medium sm:text-base">
Übersichtlicher Newsfeed
</h4>
<p class="px-4 mt-4 text-lg text-gray-700 sm:px-0 sm:text-sm">
Dein DEalog-Newsfeed wird nur entlang deiner Präferenzen, zum
Beispiel nach ausgewähltem Standort oder Thema, aus den
bestehenden Meldungen extra für dich zusammengestellt. Du
entscheidest selbst, was für dich am wichtigsten ist!
</p>
</div>
<div class="flex flex-col items-center w-full sm:block sm:w-1/3">
<div>
<img
src="images/data_economy.svg"
alt="Datensparsamkeit Icon"
/>
</div>
<h4 class="mt-8 text-2xl font-medium sm:text-base">
Datensparsamkeit
</h4>
<p class="px-4 mt-4 text-lg text-gray-700 sm:px-0 sm:text-sm">
Du benötigst als Bürger:in keinen Account für die Nutzung von
DEalog. Um den Newsfeed zusammenzustellen, gibst du lediglich
die Orte und Themen an, die für dich relevant sind. Ein
Rückschluss auf deine Person ist zu keiner Zeit möglich.
</p>
</div>
</div>
<div class="mt-4 text-center sm:text-right">
<a href="#top" class="text-lg underline sm:text-sm">Zum Anfang</a>
</div>
</div>
<div class="mt-12 sm:mt-40">
<div class="text-lg text-center text-gray-400 uppercase sm:text-xs">
<h3 name="staat">DEalog für den Staat</h3>
</div>
<h2 class="text-3xl font-semibold text-center sm:text-2xl">
Dezentrale Erstellung und zentrale Veröffentlichung offizieller
Informationen
</h2>
<div
class="block mt-8 sm:mt-20 sm:flex space-y-8 sm:space-y-0 space-x-0 sm:space-x-8"
>
<div class="flex flex-col items-center w-full sm:block sm:w-1/3">
<div>
<img
src="images/one_voice_policy.svg"
alt="One-Voice Policy Icon"
/>
</div>
<h4 class="mt-8 text-2xl font-medium sm:text-base">
One-Voice Policy
</h4>
<p class="px-4 mt-4 text-lg text-gray-700 sm:px-0 sm:text-sm">
Die Aufbereitung der Informationen im digitalen
DEalog-Backoffice erfolgt auf Seiten der öffentlichen Verwaltung
dezentral in den Fachabteilungen, wie zum Beispiel dem
Ordnungsamt. Die Meldungen für den Newsfeed können dann dem
Krisen- oder Leitungsstab zur Freigabe vorgelegt werden. Nach
der Freigabe erhalten die Bürger:innen die Informationen immer
von derselben herausgebenden Stelle, zum Beispiel der Stadt XYZ.
</p>
</div>
<div class="flex flex-col items-center w-full sm:block sm:w-1/3">
<div>
<img
src="images/traceability.svg"
alt="Nachvollziehbarkeit Icon"
/>
</div>
<h4 class="mt-8 text-2xl font-medium sm:text-base">
Nachvollziehbarkeit
</h4>
<p class="px-4 mt-4 text-lg text-gray-700 sm:px-0 sm:text-sm">
Das DEalog-Backoffice unterstützt die herausgebenden Stellen
darin, den Überblick über aktive Meldungen und deren
Verbreitungsgebiet zu behalten. Meldungen mit gegenseitigem
Bezug können miteinander verknüpft werden. So kann sich eine
Information auf eine frühere Meldung einer anderen Instanz
beziehen. Damit sind Änderungen im zeitlichen Verlauf ebenfalls
abgebildet.
</p>
</div>
<div class="flex flex-col items-center w-full sm:block sm:w-1/3">
<div>
<img
src="images/dashboard.svg"
alt="Zentrales Dashboard Icon"
/>
</div>
<h4 class="mt-8 text-2xl font-medium sm:text-base">
Zentrales Dashboard
</h4>
<p class="px-4 mt-4 text-lg text-gray-700 sm:px-0 sm:text-sm">
In einer zentralen Übersicht im DEalog-Backoffice werden alle
Meldungen der herausgebenden Stelle und ihr derzeitiger Status
dargestellt. Die Anzeige von Öffnungsraten der einzelnen
Meldungen visualisiert, ob die Meldungen die Bürger:innen auch
erreichen und gelesen werden.
</p>
</div>
</div>
<div class="mt-4 text-center sm:text-right">
<a href="#top" class="text-lg underline sm:text-sm">Zum Anfang</a>
</div>
</div>
<div class="mt-12 sm:mt-40">
<div class="text-lg text-center text-gray-400 uppercase sm:text-xs">
<h3 name="projekt">DEalog als Projekt</h3>
</div>
<h2 class="text-3xl font-semibold text-center sm:text-2xl">
Top20-Projekt beim<br />#WirVsVirus-Hackathon
</h2>
<!-- ab hier relevante div Box -->
<div
class="w-full px-4 mx-auto mt-8 text-lg sm:px-0 sm:mt-20 sm:w-1/2 sm:text-sm space-y-4"
>
<p>
Im März 2020 fanden wir uns im Rahmen des #WirVsVirus-Hackathons
als Team zusammen und begannen die Arbeiten an der Fragestellung,
wie wir krisenbegleitende Informationen den Bürger:innen zeitgemäß
zugänglich machen und dabei gleichzeitig einen Mehrwert für die
staatlichen Stellen schaffen können. Diese Frage ist nicht nur in
der Corona-Krise relevant, sondern auch bei anderen krisenhaften
Ereignissen wie Waldbränden, Hochwasser und vielen mehr.
</p>
<p>
Unsere Lösung wurde durch die Jury als eine der Top20-Lösungen aus
über 1.500 Einreichungen ausgewählt!
</p>
<p>
Mehr zum Hackathon
<a href="https://wirvsvirus.org" class="underline" target="_blank"
>hier</a
>.
</p>
<br />
<h4 class="mt-8 font-medium">Solution Enabler Programm (SEP)</h4>
<p>
Im Nachgang zum Hackathon konnten wir unsere Lösung im Rahmen des
SEP weiter vorantreiben. Zudem haben wir eine Förderung des
Bundesministeriums für Bildung und Forschung (BMBF) erhalten, um
DEalog weiterentwickeln zu können. Über das SEP konnten wir auch
unsere Praxispartner:innen gewinnen.
</p>
<p>
Zum Abschluss des SEP fand ein Demo-Day statt. Unsere Präsentation
inklusive "Hammer"-Feedback von Prof. Dr. Helge Braun (Chef
Bundeskanzleramt) kannst du hier anschauen:
</p>
<div
style="position: relative; overflow: hidden; width: 100%; padding-top: 56.25%"
>
<iframe
style="position: absolute; top: 0; left: 0; bottom: 0; right: 0; width: 100%; height: 100%"
src="https://www.youtube-nocookie.com/embed/GyaBsEShvTE"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
title="DEalog-Präsentation beim Demo-Day mit Feedback von Prof. Dr. Helge Braun (Chef
Bundeskanzleramt)"
></iframe>
</div>
<br />
<h4 class="mt-8 font-medium">Praxispartner:innen</h4>
<p>
Mit dem Bundesamt für Bevölkerungsschutz und Katastrophenhilfe
(BBK) stehen wir bereits seit dem Hackathon in engem und
konstruktivem Austausch. Mit der Bezirksregierung Arnsberg und dem
dort angesiedelten GovLab haben wir eine organisatorische Heimat
für das Projekt gefunden. Aus dem Regierungsbezirk sind zudem der
Hochsauerlandkreis mit der Stadt Arnsberg sowie der
Ennepe-Ruhr-Kreis mit der Stadt Sprockhövel Teil des
Pilot-Settings geworden. Gemeinsam haben wir sowohl die
Problemdefinition als auch die mögliche Lösung weiter
konkretisiert und validiert, um so nah wie möglich am realen
Bedarf entwickeln zu können.
</p>
<p>
Mit dem ITZ Bund und dem BBK stehen wir in Kontakt, um über einen
zukünftigen Zielbetrieb in staatlicher Hand zu sprechen.
Zahlreiche weitere Expert:innen stehen uns im Rahmen des SEP ad
hoc und fortlaufend zur Verfügung.
</p>
<br />
<h4 class="mt-8 font-medium">
Momentaner Projekt-Entwicklungsstand
</h4>
<p>
Das Projekt befindet sich derzeit in einem Live-Test mit
oben genannten Praxispartner:innen. Ein öffentlicher Zugang zur
Plattform ist deshalb noch nicht möglich.
</p>
<p>
In folgendem Video siehst du eine kurze Vorschau wie das Backoffice
für die Behörden, sowie die App für Bürger:innen aussieht:
</p>
<div
style="position: relative; overflow: hidden; width: 100%; padding-top: 56.25%"
>
<iframe
style="position: absolute; top: 0; left: 0; bottom: 0; right: 0; width: 100%; height: 100%"
src="https://www.youtube-nocookie.com/embed/ObLpMuk8RZU"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
title="DEalog - UpdateDeutschland Pitch"
></iframe>
</div>
<p>
Um auf dem Laufenden zu bleiben, kannst du dich gerne über unseren
aktuellen Entwicklungsstand auf unserem
<a
href="https://www.linkedin.com/company/dealog/"
class="underline"
target="_blank"
>LinkedIn</a
>- und
<a
href="https://twitter.com/DEalogApp"
class="underline"
target="_blank"
>Twitter</a
>- oder
<a
href="https://github.com/dealog"
class="underline"
target="_blank"
>GitHub</a
>-Account informieren!
</p>
</div>
<!-- bis hier relevante div Box -->
<div class="mt-4 text-center sm:text-right">
<a href="#top" class="text-lg underline sm:text-sm">Zum Anfang</a>
</div>
</div>
<div
class="px-4 py-12 mx-auto text-center max-w-screen-xl sm:px-6 lg:px-8 lg:py-24"
>
<div class="space-y-8 sm:space-y-12">
<div
class="space-y-5 sm:mx-auto sm:max-w-xl sm:space-y-4 lg:max-w-5xl"
>
<a name="team"></a>
<h2 class="text-3xl font-semibold text-center sm:text-2xl">
Das Team
</h2>
<p class="text-sm text-gray-500 leading-7">
Die folgenden Personen waren und/oder sind Teil des DEalog
Teams.
</p>
</div>
<ul class="flex flex-wrap justify-center mx-auto">
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/bertrand_atemkeng.jpg"
alt="Porträt von Bertrand Ndobegang Atemkeng"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Bertrand Ndobegang Atemkeng</h4>
<p class="text-xs text-gray-600">Software Entwickler</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://www.linkedin.com/in/bertrand-ndobegang-atemkeng-58b06314b/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.207v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H2.328C1.595 1 1 1.581 1 2.298v15.403C1 18.418 1.595 19 2.328 19h15.34c.734 0 1.332-.582 1.332-1.299V2.298C19 1.581 18.402 1 17.668 1z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/christian_fischbach.jpg"
alt="Porträt von Christian Fischbach"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Christian Fischbach</h4>
<p class="text-xs text-gray-600">PR</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://twitter.com/ChrFischbach"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">Twitter</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
d="M6.29 18.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0020 3.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.073 4.073 0 01.8 7.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 010 16.407a11.616 11.616 0 006.29 1.84"
/>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com/in/christian-fischbach/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.207v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H2.328C1.595 1 1 1.581 1 2.298v15.403C1 18.418 1.595 19 2.328 19h15.34c.734 0 1.332-.582 1.332-1.299V2.298C19 1.581 18.402 1 17.668 1z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/thomas_gaiser.jpg"
alt="Porträt von Thomas Gaiser"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Thomas Gaiser</h4>
<p class="text-xs text-gray-600">Produktmanager</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://www.linkedin.com/in/thomasgaiser/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.207v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H2.328C1.595 1 1 1.581 1 2.298v15.403C1 18.418 1.595 19 2.328 19h15.34c.734 0 1.332-.582 1.332-1.299V2.298C19 1.581 18.402 1 17.668 1z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/johannes_gerber.png"
alt="Porträt von Johannes Gerber"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Johannes Gerber</h4>
<p class="text-xs text-gray-600">UI/UX Designer</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://twitter.com/johannes_ux"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">Twitter</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
d="M6.29 18.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0020 3.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.073 4.073 0 01.8 7.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 010 16.407a11.616 11.616 0 006.29 1.84"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/andreas_gross.jpg"
alt="Porträt von Andreas Gross"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Andreas Gross</h4>
<p class="text-xs text-gray-600">Software Entwickler</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://www.linkedin.com/in/andreas-gross-b2085311b/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.207v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H2.328C1.595 1 1 1.581 1 2.298v15.403C1 18.418 1.595 19 2.328 19h15.34c.734 0 1.332-.582 1.332-1.299V2.298C19 1.581 18.402 1 17.668 1z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/kevin_horst.jpg"
alt="Porträt von Kevin Horst"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Kevin Horst</h4>
<p class="text-xs text-gray-600">
Software Entwickler / DevOps
</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://kevinhorst.de/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">Homepage</span>
<svg
class="w-5 h-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zM4.332 8.027a6.012 6.012 0 011.912-2.706C6.512 5.73 6.974 6 7.5 6A1.5 1.5 0 019 7.5V8a2 2 0 004 0 2 2 0 011.523-1.943A5.977 5.977 0 0116 10c0 .34-.028.675-.083 1H15a2 2 0 00-2 2v2.197A5.973 5.973 0 0110 16v-2a2 2 0 00-2-2 2 2 0 01-2-2 2 2 0 00-1.668-1.973z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/markus_mueller-schickora.jpg"
alt="Porträt von Markus Mueller-Schikora"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Markus Mueller-Schikora</h4>
<p class="text-xs text-gray-600">Initiator</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://twitter.com/muellerschikora"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">Twitter</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
d="M6.29 18.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0020 3.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.073 4.073 0 01.8 7.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 010 16.407a11.616 11.616 0 006.29 1.84"
/>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com/in/markus-mueller-schikora-a1983a165/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.207v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H2.328C1.595 1 1 1.581 1 2.298v15.403C1 18.418 1.595 19 2.328 19h15.34c.734 0 1.332-.582 1.332-1.299V2.298C19 1.581 18.402 1 17.668 1z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/rainer_sax.jpg"
alt="Porträt von Rainer Sax"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Rainer Sax</h4>
<p class="text-xs text-gray-600">UX</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://www.linkedin.com/in/rainersax/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.207v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H2.328C1.595 1 1 1.581 1 2.298v15.403C1 18.418 1.595 19 2.328 19h15.34c.734 0 1.332-.582 1.332-1.299V2.298C19 1.581 18.402 1 17.668 1z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/merve_semsar.jpg"
alt="Porträt von Merve Semsar"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Merve Semsar</h4>
<p class="text-xs text-gray-600">UI/UX</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://www.linkedin.com/in/mervesemsar/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.207v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H2.328C1.595 1 1 1.581 1 2.298v15.403C1 18.418 1.595 19 2.328 19h15.34c.734 0 1.332-.582 1.332-1.299V2.298C19 1.581 18.402 1 17.668 1z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="m-2 xl:m-4">
<div class="w-56 h-64 space-y-6 xl:h-52">
<img
class="mx-auto rounded-full h-28 w-28 xl:w-20 xl:h-20"
src="images/team/florian_schuessel.jpg"
alt="Porträt von Florian Schüssel"
/>
<div class="space-y-2">
<div class="text-lg font-medium leading-6 space-y-1">
<h4>Florian Schüssel</h4>
<p class="text-xs text-gray-600">
Software Entwickler / DevOps
</p>
</div>
<ul class="flex justify-center space-x-5">
<li>
<a
href="https://twitter.com/scflode"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">Twitter</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
d="M6.29 18.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0020 3.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.073 4.073 0 01.8 7.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 010 16.407a11.616 11.616 0 006.29 1.84"
/>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com/in/florian-schuessel-a811881a7/"
class="text-gray-400 hover:text-gray-500 transition ease-in-out duration-150"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fill-rule="evenodd"
d="M16.338 16.338H13.67V12.16c0-.995-.017-2.277-1.387-2.277-1.39 0-1.601 1.086-1.601 2.207v4.248H8.014v-8.59h2.559v1.174h.037c.356-.675 1.227-1.387 2.526-1.387 2.703 0 3.203 1.778 3.203 4.092v4.711zM5.005 6.575a1.548 1.548 0 11-.003-3.096 1.548 1.548 0 01.003 3.096zm-1.337 9.763H6.34v-8.59H3.667v8.59zM17.668 1H2.328C1.595 1 1 1.581 1 2.298v15.403C1 18.418 1.595 19 2.328 19h15.34c.734 0 1.332-.582 1.332-1.299V2.298C19 1.581 18.402 1 17.668 1z"
clip-rule="evenodd"
/>
</svg>