Spaces:
Running
Running
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.") | |