Spaces:
Runtime error
Runtime error
app
Browse files
app.py
CHANGED
|
@@ -79,12 +79,16 @@ c1.image('./src/me.jpg', width=150)
|
|
| 79 |
c2.write('### Tikendra Kumar Sahu')
|
| 80 |
st.sidebar.write('Data Science Enthusiast')
|
| 81 |
|
| 82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
webbrowser.open('https://github.com/tikendraw')
|
| 84 |
|
| 85 |
-
if
|
| 86 |
webbrowser.open('https://www.linkedin.com/in/tikendraw/')
|
| 87 |
|
| 88 |
-
if
|
| 89 |
webbrowser.open('https://www.instagram.com/tikendraw/')
|
| 90 |
|
|
|
|
| 79 |
c2.write('### Tikendra Kumar Sahu')
|
| 80 |
st.sidebar.write('Data Science Enthusiast')
|
| 81 |
|
| 82 |
+
githubb = st.sidebar.button('Github')
|
| 83 |
+
linkedin = st.sidebar.button('LinkdIn')
|
| 84 |
+
instagram = st.sidebar.button('Instagram')
|
| 85 |
+
|
| 86 |
+
if githubb:
|
| 87 |
webbrowser.open('https://github.com/tikendraw')
|
| 88 |
|
| 89 |
+
if linkedin:
|
| 90 |
webbrowser.open('https://www.linkedin.com/in/tikendraw/')
|
| 91 |
|
| 92 |
+
if instagram:
|
| 93 |
webbrowser.open('https://www.instagram.com/tikendraw/')
|
| 94 |
|