import streamlit as st from PIL import Image # TECHSOLUT branding assets TECHSOLUT_LOGO_PATH = "assets/techsolut_logo.png" def apply_techsolut_theme(): # # Hide Streamlit default footer & menu # hide_streamlit_style = """ # # """ # st.markdown(hide_streamlit_style, unsafe_allow_html=True) # TECHSOLUT theme CSS with animated SVG background custom_css = """ """ st.markdown(custom_css, unsafe_allow_html=True) # Add TECHSOLUT logo & title col1, col2 = st.columns([1, 8]) with col1: try: logo = Image.open(TECHSOLUT_LOGO_PATH) st.image(logo, width=40) except Exception: st.write(":sparkles:") with col2: st.title("TECHSOLUT Platform - Vision par Ordinateur") # Optional banner / call to action widget st.markdown("""
🎯 Plateforme de Computer Vision pour l'analyse d'images et de vidéos en temps réel.
Effectuez des analyses en temps réel avec YOLO, RT-DETR, SAM2 et plus encore.
Multi-caméras, détection d'intrusion, export PDF, et enregistrement vidéo intégrés.
⚙️ Configurez vos préférences via la barre latérale.
📹 Multi-caméras | 🛡️ Détection d'intrusion | 📄 Export PDF | 🎬 Enregistrement vidéo