ahmednoorx's picture
Test basic Streamlit app functionality
59cd773 verified
raw
history blame
459 Bytes
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.")