Spaces:
Sleeping
Sleeping
import streamlit as st | |
# Title of the app | |
st.title("Blank Streamlit App") | |
# Image | |
st.image("key1.jpg", caption="Your Image Caption", use_column_width=True) | |
# Main content area | |
st.write("This is a blank Streamlit app. You can start building your app from here.") | |