19 lines
530 B
Python
19 lines
530 B
Python
# ui/streamlit_app/Home.py
|
|
import streamlit as st
|
|
|
|
from utils.logger import Logger
|
|
|
|
logger = Logger(source="test_ui")
|
|
logger.log("This is a test log from the UI!", level="INFO")
|
|
|
|
|
|
def run():
|
|
st.set_page_config(page_title="Email Assistant", layout="wide")
|
|
st.title("📬 Email Assistant Dashboard")
|
|
st.markdown("Welcome to your AI-powered inbox control center!")
|
|
|
|
# TODO: Show summary stats, recent labels, account statuses
|
|
st.info("Stats coming soon! Build in progress.")
|
|
|
|
if __name__ == "__main__":
|
|
run()
|