ShayanRl commited on
Commit
247d9dc
·
verified ·
1 Parent(s): 965483e

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 for the home page
4
+ st.title("Home Page")
5
+
6
+ # Link to Loop1 page
7
+ st.write("[Go to Loop1 Page](?page=loop1)")
8
+
9
+ # Display home page content
10
+ st.write("This is the home page of your Streamlit app.")