Alejandro Pardo commited on
Commit
2f8617d
·
1 Parent(s): 70499f0

Deploy: 2026-03-01 23:28

Browse files
Files changed (1) hide show
  1. src/web/app.py +8 -15
src/web/app.py CHANGED
@@ -332,6 +332,10 @@ def main():
332
  # SIDEBAR — conversation list
333
  # ================================================================
334
 
 
 
 
 
335
  with st.sidebar:
336
  st.markdown("### Conversaciones")
337
  if st.button("+ Nueva conversación", use_container_width=True):
@@ -634,21 +638,10 @@ def main():
634
 
635
  # Footer
636
  st.markdown("---")
637
- logo_path = Path(__file__).parent.parent.parent / "static" / "global_bridge_logo.png"
638
- if logo_path.exists():
639
- footer_col1, footer_col2 = st.columns([1, 4])
640
- with footer_col1:
641
- st.image(str(logo_path), width=100)
642
- with footer_col2:
643
- st.caption(
644
- "Desarrollado por [Global Bridge Consultancy](https://globalbridge.consulting/)\n\n"
645
- "Elecciones Presidenciales Colombia 2026"
646
- )
647
- else:
648
- st.caption(
649
- "Desarrollado por [Global Bridge Consultancy](https://globalbridge.consulting/) · "
650
- "Elecciones Presidenciales Colombia 2026"
651
- )
652
 
653
 
654
  # ============================================================================
 
332
  # SIDEBAR — conversation list
333
  # ================================================================
334
 
335
+ logo_path = Path(__file__).parent.parent.parent / "static" / "global_bridge_logo.png"
336
+ if logo_path.exists():
337
+ st.logo(str(logo_path), link="https://globalbridge.consulting/")
338
+
339
  with st.sidebar:
340
  st.markdown("### Conversaciones")
341
  if st.button("+ Nueva conversación", use_container_width=True):
 
638
 
639
  # Footer
640
  st.markdown("---")
641
+ st.caption(
642
+ "Desarrollado por [Global Bridge Consultancy](https://globalbridge.consulting/) · "
643
+ "Elecciones Presidenciales Colombia 2026"
644
+ )
 
 
 
 
 
 
 
 
 
 
 
645
 
646
 
647
  # ============================================================================