palitrajarshi commited on
Commit
f58f5b7
β€’
1 Parent(s): a7d9e7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -1
app.py CHANGED
@@ -8,7 +8,20 @@ if 'unique_id' not in st.session_state:
8
 
9
  def main():
10
 
11
- st.set_page_config(page_title="Resume Screening Assistance")
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  st.title("HR - Resume Screening Assistance πŸ’ ")
13
  st.subheader("I can help you in resume screening process")
14
 
 
8
 
9
  def main():
10
 
11
+ #st.set_page_config(page_title="Resume Screening BOT")
12
+
13
+ st.set_page_config(
14
+ page_title="Resume Screening Assistance",
15
+ page_icon="πŸ’",
16
+ layout="wide",
17
+ initial_sidebar_state="expanded",
18
+ menu_items={
19
+ 'Get Help': 'https://www.extremelycoolapp.com/help',
20
+ 'Report a bug': "https://www.extremelycoolapp.com/bug",
21
+ 'About': "# This is a header. This is an *extremely* cool app!"
22
+ }
23
+ )
24
+
25
  st.title("HR - Resume Screening Assistance πŸ’ ")
26
  st.subheader("I can help you in resume screening process")
27