AnishaG0201 commited on
Commit
0c2853d
·
verified ·
1 Parent(s): ef64266

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def main():
17
  st.sidebar.markdown("Select a page to view")
18
 
19
  # Navigation options
20
- page = st.sidebar.radio("Go to", ["Home","About", "Job Description Analysis", "Interview Preparation","Resume Maker","Projects Suggestion","Projects Guide"])
21
 
22
  if page == "Home":
23
  st.title("Welcome to Job Description Analysis App")
@@ -37,6 +37,10 @@ def main():
37
  elif page == "Projects Guide":
38
  import Project_Guide
39
  Project_Guide.app()
 
 
 
 
40
 
41
 
42
 
 
17
  st.sidebar.markdown("Select a page to view")
18
 
19
  # Navigation options
20
+ page = st.sidebar.radio("Go to", ["Home","About", "Job Description Analysis", "Interview Preparation","Resume Maker","Projects Suggestion","Projects Guide","Profile Detail"])
21
 
22
  if page == "Home":
23
  st.title("Welcome to Job Description Analysis App")
 
37
  elif page == "Projects Guide":
38
  import Project_Guide
39
  Project_Guide.app()
40
+ elif page == "Profile Detail":
41
+ import Profile_Detail
42
+ Profile_Detail.app()
43
+
44
 
45
 
46