Spaces:
Sleeping
Sleeping
Update pre.py
Browse files
pre.py
CHANGED
@@ -60,6 +60,10 @@ def preprocess_uploaded_file(uploaded_file):
|
|
60 |
def add_app_description():
|
61 |
app_title = '<p style="font-family:Roboto, sans-serif; color:#004E7C; font-size: 42px;">DataLink Compare</p>'
|
62 |
st.markdown(app_title, unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
63 |
|
64 |
is_selected = st.sidebar.checkbox('Show App Description', value=False)
|
65 |
|
|
|
60 |
def add_app_description():
|
61 |
app_title = '<p style="font-family:Roboto, sans-serif; color:#004E7C; font-size: 42px;">DataLink Compare</p>'
|
62 |
st.markdown(app_title, unsafe_allow_html=True)
|
63 |
+
|
64 |
+
# Add the new link here
|
65 |
+
link_html = '<a href="https://scenarioswitcher.negadan77.workers.dev/" target="_blank">Open Scenario Switcher</a>'
|
66 |
+
st.markdown(link_html, unsafe_allow_html=True)
|
67 |
|
68 |
is_selected = st.sidebar.checkbox('Show App Description', value=False)
|
69 |
|