"""Shared layout primitives and theme styling.""" from __future__ import annotations import streamlit as st ACCENT_ORANGE = "#FF6B35" ACCENT_CYAN = "#00B8D9" def apply_theme() -> None: st.set_page_config( page_title="WarehouseEye Live Demo", page_icon="🎥", layout="wide", initial_sidebar_state="expanded", ) st.markdown( f""" """, unsafe_allow_html=True, ) def render_header() -> None: st.markdown('
WAREHOUSEEYE / CCTV OPS
', unsafe_allow_html=True) st.markdown( """

WarehouseEye Control Room

Real-time multimodal tracking and natural-language video intelligence.

""", unsafe_allow_html=True, ) def render_footer() -> None: st.markdown( """ """, unsafe_allow_html=True, )