Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
# Title of the app
|
| 4 |
+
st.title("Blank Streamlit App")
|
| 5 |
+
|
| 6 |
+
# Image
|
| 7 |
+
st.image("key1.jpg", caption="Your Image Caption", use_column_width=True)
|
| 8 |
+
|
| 9 |
+
# Main content area
|
| 10 |
+
st.write("This is a blank Streamlit app. You can start building your app from here.")
|