circulartext commited on
Commit
f4bb0aa
1 Parent(s): cb9d490

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
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.")