diff --git a/etl/customers/stonewater/map_app/assets/hestia-logo.png b/etl/customers/stonewater/map_app/assets/hestia-logo.png new file mode 100644 index 00000000..8a49c95b Binary files /dev/null and b/etl/customers/stonewater/map_app/assets/hestia-logo.png differ diff --git a/etl/customers/stonewater/map_app/assets/osmosis-Logo.svg b/etl/customers/stonewater/map_app/assets/osmosis-Logo.svg new file mode 100644 index 00000000..d1937f9b --- /dev/null +++ b/etl/customers/stonewater/map_app/assets/osmosis-Logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/etl/customers/stonewater/map_app/assets/stonewater-logo.png b/etl/customers/stonewater/map_app/assets/stonewater-logo.png new file mode 100644 index 00000000..0d05f58f Binary files /dev/null and b/etl/customers/stonewater/map_app/assets/stonewater-logo.png differ diff --git a/etl/customers/stonewater/map_app/map_page.py b/etl/customers/stonewater/map_app/map_page.py index c39a53af..4fa2406c 100644 --- a/etl/customers/stonewater/map_app/map_page.py +++ b/etl/customers/stonewater/map_app/map_page.py @@ -61,6 +61,43 @@ def layout(): dbc.Col( html.Div( [ + # Banner with logos + dbc.Row( + [ + dbc.Col( + html.Img(src="assets/stonewater-logo.png", height="50px"), + width="auto" + ), + dbc.Col( + html.Img(src="assets/osmosis-Logo.svg", height="50px"), + width="auto" + ), + dbc.Col( + html.Div( + style={"color": "white", "font-size": "1.5rem", "font-weight": "bold"} + ), + width=True, + className="text-center" + ) + ], + className="align-items-center", + style={"background-color": "#027fa6", "padding": "10px"} + ), + dbc.Row( + [ + dbc.Col("Powered by", style={"color": "#027fa6", "fontSize": "1rem", 'zIndex': 10}, width="auto"), + dbc.Col( + html.A( + html.Img(src="assets/hestia-logo.png", height="50px"), + href="https://hestia.homes", + ), + width="auto", + style={"margin-left": "-60px"} + ), + ], + justify='left', + align="center" + ), html.H1( "Stonewater Survey Map", style={"font-size": "2.5rem", "font-weight": "bold", "margin-bottom": "20px"} @@ -79,7 +116,7 @@ def layout(): dbc.Row( dbc.Col( make_map(locations=locations), - width=12, + width=10, align="center", className="text-center" ),