Spaces:
Sleeping
Sleeping
File size: 265 Bytes
f4bb0aa |
1 2 3 4 5 6 7 8 9 10 11 |
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.")
|