File size: 459 Bytes
baf4fd0
 
 
 
 
 
 
 
59cd773
 
baf4fd0
59cd773
 
 
 
d87f007
59cd773
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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.")