import streamlit as st st.set_page_config( page_title="Cold Email Outreach Assistant", page_icon="📧", layout="wide" ) st.title("📧 Cold Email Outreach Assistant") st.write("🎉 Basic Streamlit app is working!") # Test file upload uploaded_file = st.file_uploader("Test CSV Upload", type=['csv']) if uploaded_file: st.success("File upload works!") st.write("If you can see this, the basic app is running correctly.")