Spaces:
Sleeping
Sleeping
Commit
·
5433098
1
Parent(s):
8d01c66
Update app.py
Browse files
app.py
CHANGED
@@ -10,6 +10,17 @@ st.sidebar.markdown("Phone: 9460468011")
|
|
10 |
st.sidebar.markdown("[LinkedIn](https://www.linkedin.com/in/gourav-gujariya)")
|
11 |
st.sidebar.markdown("[GitHub](https://github.com/gouravgujariya)")
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
# Education
|
14 |
st.header("Education")
|
15 |
st.subheader("Dr. B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India")
|
|
|
10 |
st.sidebar.markdown("[LinkedIn](https://www.linkedin.com/in/gourav-gujariya)")
|
11 |
st.sidebar.markdown("[GitHub](https://github.com/gouravgujariya)")
|
12 |
|
13 |
+
# Links to Projects
|
14 |
+
st.sidebar.header("Projects")
|
15 |
+
project_links = {
|
16 |
+
"Text Analysis": "https://huggingface.co/spaces/gouravgujariya/Text_analysis",
|
17 |
+
"Scan Threat Detection": "https://huggingface.co/spaces/gouravgujariya/Scan_Threat_detection",
|
18 |
+
"Web to JSON": "https://huggingface.co/spaces/gouravgujariya/Web_to_json"
|
19 |
+
}
|
20 |
+
|
21 |
+
for project_name, link in project_links.items():
|
22 |
+
st.sidebar.markdown(f"[{project_name}]({link})")
|
23 |
+
|
24 |
# Education
|
25 |
st.header("Education")
|
26 |
st.subheader("Dr. B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India")
|