This repository has been archived by the owner on Jun 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # client/src/App.vue # client/src/components/Navigation.vue # client/src/components/laboratory/LinkTestAndPatient.vue # client/src/components/laboratory/LinkTestResultAndPatient.vue # client/src/routes/routes.js # client/src/util/randomize.js
- Loading branch information
Showing
15 changed files
with
307 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
<template> | ||
<div class="main"> | ||
<div class="left-part"> | ||
<div> | ||
<h1> | ||
<img | ||
src="../assets/logo.png" | ||
aspect-ratio="1.7" | ||
style="vertical-align: middle" | ||
/> | ||
<span style="margin-left: 15px">Schnell. Einfach. Zuverlässig.</span> | ||
</h1> | ||
<br /> | ||
<table> | ||
<tr style="vertical-align: middle;"> | ||
<td width="60%"> | ||
<iframe | ||
allowfullscreen="true" | ||
id="youtube" | ||
v-bind:style="{ width: '100%', height: (38 / 16) * 9 + 'vw' }" | ||
src="https://www.youtube.com/embed/XIIlMh3Lbsc" | ||
style="vertical-align: top" | ||
>Video vom Browser nicht unterstützt. | ||
</iframe> | ||
</td> | ||
<td width="40%"> | ||
<div style="padding-left: 50px; text-align: justify"> | ||
{{ paragraph1 }} | ||
</div> | ||
<br /> | ||
<div style="padding-left: 50px; text-align: justify"> | ||
{{ paragraph2 }} | ||
</div> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
<br> | ||
<!-- | ||
<div> | ||
<h2 style="text-align: center">Unsere Vision</h2> | ||
<img src="../assets/vision.png" width="80%"/> | ||
</div> | ||
--> | ||
<br /> | ||
</div> | ||
<div class="transition"></div> | ||
<div class="right-part"> | ||
<table style="position: absolute; top: 5px;"> | ||
<tr> | ||
<td><a-button type="primary" block="true" href="mailto:[email protected]" icon="mail" shape="round">Kontakt</a-button></td> | ||
<td><a-button type="primary" block="true" href="https://devpost.com/software/imis-infektions-melde-und-informations-system" icon="bulb" shape="round">DevPost</a-button></td> | ||
<td><a-button type="primary" block="true" href="https://github.com/ImisDevelopers/1_011_a_infektionsfall_uebermittellung" icon="tool" shape="round">GitHub</a-button></td> | ||
</tr> | ||
</table> | ||
<h1>Hier geht's zur Live-Demo:</h1> | ||
<a-button | ||
type="primary" | ||
shape="round" | ||
icon="arrow-right" | ||
size="large" | ||
href="/prototype/register-patient" | ||
block | ||
>Zum Prototypen | ||
</a-button> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
components: {}, | ||
data() { | ||
return { | ||
paragraph1: | ||
"Das Sammeln und Verwalten der aktuellen Infektionszahlen erfordert extrem viel Zeit und Ressourcen. IMIS ist unsere Lösung für eine einfache Infektionsfall-Erfassung für Ärzte, Gesundheitsämter und Labore. Damit ermöglichen wir, dass wichtige Ressourcen an anderer Stelle besser eingesetzt werden können.", | ||
paragraph2: | ||
"Die COVID-19 Pandemie stellt für das bestehende Infektionsmeldewesen in Deutschland eine immense Herausforderung dar. Ärzte und über 400 Gesundheitsämter benutzen gegenwärtig einen uneinheitlichen Mix aus Fax, E-Mails und Excel Tabellen um Fälle zusammenzutragen. Verspätet Meldungen an das RKI und überlastete Gesundheitsämter sind die Folge. So wurden laut RKI von einigen Gesundheitsämtern sogar keine Zahlen für dieses Wochenende übermittelt. Diese ungenaue Datenlage sorgt für eine große Unsicherheit und macht es schwer, angemessen auf die Krise zu reagieren. " | ||
}; | ||
}, | ||
name: "LandingPage" | ||
}; | ||
</script> | ||
|
||
<style> | ||
.main { | ||
background-color: whitesmoke; | ||
margin: 0 auto; | ||
font-family: Avenir, Helvetica, Arial, sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
.left-part { | ||
display: table-cell; | ||
width: 70vw; | ||
height: 100vh; | ||
text-align: left; | ||
padding: 1%; | ||
} | ||
.transition { | ||
display: table-cell; | ||
background-image: linear-gradient( | ||
80deg, | ||
rgba(0, 0, 0, 0) 0%, | ||
rgba(0, 0, 0, 0) 50%, | ||
lightgrey 50%, | ||
lightgrey 100% | ||
); | ||
width: 10vw; | ||
height: 100vh; | ||
} | ||
.right-part { | ||
display: table-cell; | ||
width: 20vw; | ||
height: 100vh; | ||
background-color: lightgrey; | ||
text-align: left; | ||
vertical-align: middle; | ||
padding-right: 40px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.