Anne31415 commited on
Commit
7350525
1 Parent(s): f26adcb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -97,7 +97,17 @@ def main():
97
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
98
 
99
  # Main content
100
- st.title("Welcome to BinDocs ChatBot! 🤖")
 
 
 
 
 
 
 
 
 
 
101
 
102
  # Start tracking user interactions
103
  with streamlit_analytics.track():
 
97
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
98
 
99
  # Main content
100
+ col1, col2 = st.columns([3, 1]) # Adjust the ratio to your liking
101
+
102
+ with col1:
103
+ st.title("Welcome to BinDocs ChatBot! 🤖")
104
+
105
+ with col2:
106
+ # Load and display the image in the right column, which will be the top-right corner of the page
107
+ image = Image.open('Logo_BinBoc.png')
108
+ st.image(image, use_column_width='always')
109
+
110
+
111
 
112
  # Start tracking user interactions
113
  with streamlit_analytics.track():