Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -251,7 +251,7 @@ def page1():
|
|
251 |
col1, col2 = st.columns([3, 1]) # Adjust the ratio to your liking
|
252 |
|
253 |
with col1:
|
254 |
-
st.title("
|
255 |
|
256 |
with col2:
|
257 |
# Load and display the image in the right column, which will be the top-right corner of the page
|
@@ -372,7 +372,7 @@ def page2():
|
|
372 |
col1, col2 = st.columns([3, 1]) # Adjust the ratio to your liking
|
373 |
|
374 |
with col1:
|
375 |
-
st.title("
|
376 |
|
377 |
with col2:
|
378 |
# Load and display the image in the right column, which will be the top-right corner of the page
|
@@ -597,7 +597,7 @@ def page3():
|
|
597 |
|
598 |
def page4():
|
599 |
try:
|
600 |
-
st.header(":mailbox:
|
601 |
st.markdown("Ihre Session-ID finden Sie auf der linken Seite!")
|
602 |
|
603 |
contact_form = """
|
@@ -638,20 +638,20 @@ def main():
|
|
638 |
st.title('BinDoc GmbH')
|
639 |
st.markdown("Tauchen Sie ein in eine revolutionäre Erfahrung mit BinDocs Chat-App - angetrieben von fortschrittlichster KI-Technologie.")
|
640 |
add_vertical_space(1)
|
641 |
-
page = st.sidebar.selectbox("Choose a page", ["KH_Reform", "
|
642 |
add_vertical_space(4)
|
643 |
display_session_id() # Display the session ID in the sidebar
|
644 |
st.write('Made with ❤️ by BinDoc GmbH')
|
645 |
|
646 |
|
647 |
# Main area content based on page selection
|
648 |
-
if page == "
|
649 |
page1()
|
650 |
-
elif page == "
|
651 |
page2()
|
652 |
elif page == "Kosten- und Strukturdaten der Krankenhäuser":
|
653 |
page3()
|
654 |
-
elif page == "
|
655 |
page4()
|
656 |
|
657 |
|
|
|
251 |
col1, col2 = st.columns([3, 1]) # Adjust the ratio to your liking
|
252 |
|
253 |
with col1:
|
254 |
+
st.title("Alles zur aktuellen Krankenhausreform!")
|
255 |
|
256 |
with col2:
|
257 |
# Load and display the image in the right column, which will be the top-right corner of the page
|
|
|
372 |
col1, col2 = st.columns([3, 1]) # Adjust the ratio to your liking
|
373 |
|
374 |
with col1:
|
375 |
+
st.title("Die wichtigsten 100 Kennzahlen und KPIs!")
|
376 |
|
377 |
with col2:
|
378 |
# Load and display the image in the right column, which will be the top-right corner of the page
|
|
|
597 |
|
598 |
def page4():
|
599 |
try:
|
600 |
+
st.header(":mailbox: Kontakt & Feedback!")
|
601 |
st.markdown("Ihre Session-ID finden Sie auf der linken Seite!")
|
602 |
|
603 |
contact_form = """
|
|
|
638 |
st.title('BinDoc GmbH')
|
639 |
st.markdown("Tauchen Sie ein in eine revolutionäre Erfahrung mit BinDocs Chat-App - angetrieben von fortschrittlichster KI-Technologie.")
|
640 |
add_vertical_space(1)
|
641 |
+
page = st.sidebar.selectbox("Choose a page", ["KH_Reform", "Die wichtigsten 100 Kennzahlen und KPIs!", "Kosten- und Strukturdaten der Krankenhäuser", "Kontakt & Feedback!"])
|
642 |
add_vertical_space(4)
|
643 |
display_session_id() # Display the session ID in the sidebar
|
644 |
st.write('Made with ❤️ by BinDoc GmbH')
|
645 |
|
646 |
|
647 |
# Main area content based on page selection
|
648 |
+
if page == "Alles zur aktuellen Krankenhausreform!":
|
649 |
page1()
|
650 |
+
elif page == "Die wichtigsten 100 Kennzahlen und KPIs!":
|
651 |
page2()
|
652 |
elif page == "Kosten- und Strukturdaten der Krankenhäuser":
|
653 |
page3()
|
654 |
+
elif page == "Kontakt & Feedback!":
|
655 |
page4()
|
656 |
|
657 |
|