Skip to content

Commit

Permalink
add footer
Browse files Browse the repository at this point in the history
  • Loading branch information
mmann1123 committed May 30, 2024
1 parent 8ae9b14 commit a314d55
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions osm_leaderboard/dash_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,41 @@
dcc.Store(
id="stored-data"
), # Hidden storage for persisting data across callbacks
html.Div(
[
html.A(
html.Img(
src="https://github.com/mmann1123/OSM_LeaderBoard/blob/main/video/gw.png?raw=true",
style={"height": "70px", "margin-right": "10px"},
),
href="https://geography.columbian.gwu.edu/",
),
html.A(
html.Img(
src="https://github.com/mmann1123/OSM_LeaderBoard/blob/main/video/pygis.png?raw=true",
style={"height": "70px", "margin-right": "10px"},
),
href="https://pygis.io",
),
html.A(
html.Img(
src="https://github.com/mmann1123/OSM_LeaderBoard/blob/main/video/youthmappers.webp?raw=true",
style={"height": "70px"},
),
href="https://www.youthmappers.org/",
),
html.Br(),
html.Br(),
html.Br(),
html.A(
html.Img(
src="https://zenodo.org/badge/DOI/10.5281/zenodo.11387666.svg"
),
href="https://doi.org/10.5281/zenodo.11387666",
),
],
style={"textAlign": "center", "padding": "20px"},
),
]
)

Expand Down

0 comments on commit a314d55

Please sign in to comment.