Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,16 @@
|
|
1 |
|
2 |
|
3 |
import streamlit as st
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
st.markdown(
|
6 |
"""
|
7 |
<style>
|
@@ -86,6 +95,7 @@ st.markdown("""
|
|
86 |
|
87 |
""",unsafe_allow_html=True)
|
88 |
|
|
|
89 |
st.markdown("-----------------------------------------------------")
|
90 |
|
91 |
|
@@ -145,7 +155,7 @@ st.markdown("""
|
|
145 |
</ul>
|
146 |
""", unsafe_allow_html=True)
|
147 |
|
148 |
-
|
149 |
|
150 |
logo_url = "https://i.imgur.com/WYnv26e.jpeg" # Replace this with your image's direct URL
|
151 |
st.markdown(
|
|
|
1 |
|
2 |
|
3 |
import streamlit as st
|
4 |
+
from streamlit_extras.switch_page_button import switch_page
|
5 |
+
def apollo_page_switch():
|
6 |
+
switch_to_apollo = st.button("Visit the page for Apollo extract input")
|
7 |
+
if switch_to_apollo:
|
8 |
+
switch_page("Apollo_Extract")
|
9 |
+
|
10 |
+
def BH_page_switch():
|
11 |
+
switch_to_BH = st.button("Visit the page dedicated for Business hubs use case")
|
12 |
+
if switch_to_rabigh:
|
13 |
+
switch_page("Business_Hubs")
|
14 |
st.markdown(
|
15 |
"""
|
16 |
<style>
|
|
|
95 |
|
96 |
""",unsafe_allow_html=True)
|
97 |
|
98 |
+
apollo_page_switch()
|
99 |
st.markdown("-----------------------------------------------------")
|
100 |
|
101 |
|
|
|
155 |
</ul>
|
156 |
""", unsafe_allow_html=True)
|
157 |
|
158 |
+
BH_page_switch()
|
159 |
|
160 |
logo_url = "https://i.imgur.com/WYnv26e.jpeg" # Replace this with your image's direct URL
|
161 |
st.markdown(
|