import streamlit as st import base64 import os st.set_page_config( page_title="InsightLoop", page_icon="đ", layout="wide", initial_sidebar_state="collapsed" ) # Set dark theme programmatically st.markdown( """ """, unsafe_allow_html=True ) # --- LOGO --- def get_logo_base64(logo_path): if not os.path.exists(logo_path): return None with open(logo_path, "rb") as img_file: b64 = base64.b64encode(img_file.read()).decode("utf-8") return b64 logo_path = "src/logo.png" logo_b64 = get_logo_base64(logo_path) if logo_b64: st.markdown( f"""
Analyzing images and audio takes a few secondsâso just sit back, relax, and let the AI do the heavy lifting.
Youâll have deeper insights in less time than it takes to reheat your coffee. âđŚž