JaredBailey commited on
Commit
f1cc621
·
verified ·
1 Parent(s): f66cc60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -4
app.py CHANGED
@@ -33,7 +33,10 @@ from src.image_transform import *
33
  ###
34
  #####
35
  # This loads general code for use by the tool
36
- st.set_page_config(layout="wide")
 
 
 
37
 
38
  if 'screen' not in st.session_state:
39
  st.session_state.screen = 0
@@ -82,11 +85,12 @@ if st.session_state.screen == 0:
82
  st.session_state.screen = 1
83
  st.rerun()
84
 
85
- # purchase option
86
- st.markdown("<a href='https://www.amazon.com/Wheres-Waldo-Ultimate-Watcher-Collection/dp/1536215112/ref=asc_df_1536215112/?tag=hyprod-20&linkCode=df0&hvadid=496186854683&hvpos=&hvnetw=g&hvrand=13774168920524356768&hvpone=&hvptwo=&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=9009670&hvtargid=pla-1185030597547&psc=1&mcid=a517c47662b13f96a80fbf3bfe8b30fe&gclid=CjwKCAjwuJ2xBhA3EiwAMVjkVADBaOb87R0kxhnpKqL-S_gJWme0DJJAwSTe-VlUv2p19zZKak3cshoCR34QAvD_BwE' style='text-align: center; color: black;'>Purchase the Books</a>", unsafe_allow_html=True)
87
-
88
  # image of Waldo and his friends
89
  st.image("/home/user/app/home_page_images/Waldo_Friends.jpg", use_column_width=True)
 
 
 
 
90
 
91
 
92
 
 
33
  ###
34
  #####
35
  # This loads general code for use by the tool
36
+ st.set_page_config(
37
+ page_title="Find Waldo and His Friends Using Computer Vision",
38
+ layout="wide"
39
+ )
40
 
41
  if 'screen' not in st.session_state:
42
  st.session_state.screen = 0
 
85
  st.session_state.screen = 1
86
  st.rerun()
87
 
 
 
 
88
  # image of Waldo and his friends
89
  st.image("/home/user/app/home_page_images/Waldo_Friends.jpg", use_column_width=True)
90
+
91
+ # purchase option
92
+ st.markdown("<a href='https://www.amazon.com/Wheres-Waldo-Ultimate-Watcher-Collection/dp/1536215112/ref=asc_df_1536215112/?tag=hyprod-20&linkCode=df0&hvadid=496186854683&hvpos=&hvnetw=g&hvrand=13774168920524356768&hvpone=&hvptwo=&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=9009670&hvtargid=pla-1185030597547&psc=1&mcid=a517c47662b13f96a80fbf3bfe8b30fe&gclid=CjwKCAjwuJ2xBhA3EiwAMVjkVADBaOb87R0kxhnpKqL-S_gJWme0DJJAwSTe-VlUv2p19zZKak3cshoCR34QAvD_BwE' style='text-align: center; color: black;'>Purchase the Books</a>", unsafe_allow_html=True)
93
+
94
 
95
 
96