-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/ferbsx/MPXRadar-frontend int…
…o dev
- Loading branch information
Showing
25 changed files
with
517 additions
and
9 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.
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.
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.
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.
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.
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.
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.
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.
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,5 @@ | ||
.responsive { | ||
width: 100%; | ||
max-width: 400px; | ||
height: auto; | ||
} |
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 |
---|---|---|
@@ -1,15 +1,162 @@ | ||
import dash_bootstrap_components as dbc | ||
import dash | ||
from dash import html | ||
from dash import html, dcc | ||
|
||
dash.register_page(__name__) | ||
dash.register_page(__name__, path='/About') | ||
|
||
layout = html.Div( | ||
children=[ | ||
html.H1(children="This is our about page"), | ||
|
||
html.H1(children="Project Description"), | ||
html.Div( | ||
children=""" | ||
Monkeypox is an infectious disease caused by a smallpox virus, recently spreading in multiple countries with over 16,500 cases and declared a global emergency by the World Health Organization (citation). | ||
Normally, the virus is rarely observed outside of Africa, but in recent months it has occurred in over 11 countries in other continents [CITATION]. | ||
This alarming behavior demands action and highlights the need for genomic surveillance and spatio-temporal analyses. | ||
Therefore, the Robert Koch Institute (RKI) together with the Hasso Platter Institute (HPI) joined forces to and adapted the tool covSonar - a database framework developed at the RKI for SARS-CoV-2 - to Monkeypox. | ||
""" | ||
), | ||
|
||
html.H1(children="Who are we?"), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg(src="assets/Prof. Dr. Bernhard Renard.jpeg", | ||
top=True, style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Prof. Dr. Bernhard Renard", className="card-title" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-left": "2rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg(src="assets/Dr. Stephan Fuchs.png", top=True, | ||
style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Dr. Stephan Fuchs", className="card-text" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg(src="assets/Dr. Anna-Juliane Schmachtenberg.jpeg", top=True, | ||
style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Dr. Anna-Juliane Schmachtenberg" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg(src="assets/Alice Wittig.jpeg", top=True, | ||
style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Alice Wittig" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-top": "1rem", "margin-left": "2rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg(src="assets/Ferdous Nasri.jpeg", top=True, | ||
style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Ferdous Nasri" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-top": "1rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg( | ||
src="https://upload.wikimedia.org/wikipedia/commons/9/99/Sample_User_Icon.png", top=True, style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Kunaphas Kongkitimanon" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-top": "1rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg( | ||
src="https://upload.wikimedia.org/wikipedia/commons/9/99/Sample_User_Icon.png", top=True, style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Jorge Sanchez-Cortes" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-top": "1rem", "margin-left": "2rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg(src="assets/Injun Park.jpeg", top=True, | ||
style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Injun Park" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-top": "1rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg(src="assets/Ivan Tunov.png", top=True, | ||
style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Ivan Tunov" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-top": "1rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
dbc.Card( | ||
[ | ||
dbc.CardImg(src="assets/Pavlo Konoplev.png", top=True, | ||
style={"width": "238px", "height": "300px"}, className='align-self-center'), | ||
dbc.CardBody( | ||
[ | ||
html.P( | ||
"Pavlo Konoplev" | ||
), | ||
] | ||
), | ||
], style={"width": "15rem", "margin-top": "1rem", "margin-left": "2rem", "margin-right": "5rem", 'display': 'inline-block'},), | ||
|
||
|
||
|
||
html.H1(children="Data sources:"), | ||
html.Div( | ||
children=""" | ||
... | ||
""" | ||
), | ||
|
||
html.H1(children="Link to code:"), | ||
dcc.Link(html.A('Link to Github'), href=( | ||
'https://github.com/ferbsx/MPXRadar-frontend'), target='_blank'), | ||
|
||
html.H1(children="Acknowledgements:"), | ||
html.Div( | ||
children=""" | ||
This is our about page content. | ||
""" | ||
... | ||
""" | ||
), | ||
] | ||
) |
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,29 @@ | ||
import dash | ||
from dash import html | ||
|
||
dash.register_page(__name__, path="/Contact") | ||
|
||
layout = html.Div( | ||
children=[ | ||
html.H1(children="Contact us"), | ||
html.Div( | ||
children=""" | ||
Please open an issue on our GitHub repository. if you find a bug or if something is unclear. | ||
""" | ||
), | ||
html.Br(), | ||
html.Div( | ||
children=""" | ||
GitHub repository link: [github-repo-link] | ||
""" | ||
), | ||
html.Br(), | ||
html.Div( | ||
children=""" | ||
You can also email us using the following address: monkeyporadar-team@xx.xx | ||
""" | ||
), | ||
], | ||
|
||
), | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
COUNTRY,MUTATION,OCCURENCES | ||
Austria,I64K,352 | ||
Egypt,I64K,8 | ||
Germany,I64K,13190 | ||
Israel,I64K,32 | ||
Portugal,I64K,704 | ||
Slovakia,I64K,352 | ||
Switzerland,I64K,32 | ||
United Kingdom,I64K,5816 | ||
USA,I64K,6663 |
Oops, something went wrong.