RishabhBhardwaj commited on
Commit
2b675f6
1 Parent(s): bc152f8

image position

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -61,12 +61,14 @@ if st.button("Evaluate"):
61
 
62
  # Add information about Walled Guard Advanced
63
  st.markdown("---")
64
- st.write("For a more performant version, check out Walled Guard Advanced.")
65
- st.write("Connect with us at admin@walled.ai for more information.")
 
66
 
67
  # Add logo at the bottom center
 
68
  col1, col2, col3 = st.columns([1,2,1])
69
  with col2:
70
  logo_url = "https://github.com/walledai/walledeval/assets/32847115/d8b1d14f-7071-448b-8997-2eeba4c2c8f6"
71
  logo = load_image_from_url(logo_url)
72
- st.image(logo, use_column_width=True)
 
61
 
62
  # Add information about Walled Guard Advanced
63
  st.markdown("---")
64
+ col1, col2, col3 = st.columns([1,2,1])
65
+ with col2:
66
+ st.info("For a more performant version, check out Walled Guard Advanced. Connect with us at admin@walled.ai for more information.")
67
 
68
  # Add logo at the bottom center
69
+ st.markdown("---")
70
  col1, col2, col3 = st.columns([1,2,1])
71
  with col2:
72
  logo_url = "https://github.com/walledai/walledeval/assets/32847115/d8b1d14f-7071-448b-8997-2eeba4c2c8f6"
73
  logo = load_image_from_url(logo_url)
74
+ st.image(logo, use_column_width=True, width=400) # Adjust the width as needed