Spaces:
Runtime error
Runtime error
ImranzamanML
commited on
Commit
•
84af8aa
1
Parent(s):
424f861
Update app.py
Browse files
app.py
CHANGED
@@ -27,13 +27,25 @@ if submit:
|
|
27 |
right_column.error('Please enter your OpenAI key and Query both!', icon="🚨")
|
28 |
|
29 |
st.markdown("---")
|
30 |
-
st.write("Connect with me
|
|
|
|
|
|
|
31 |
|
32 |
# Create layout with four columns for social media links
|
33 |
-
kaggle, linkedin, google_scholar, youtube = st.columns(
|
34 |
|
35 |
# Social media links
|
36 |
-
kaggle.markdown("
|
37 |
-
linkedin.markdown("
|
38 |
-
google_scholar.markdown("
|
39 |
-
youtube.markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
right_column.error('Please enter your OpenAI key and Query both!', icon="🚨")
|
28 |
|
29 |
st.markdown("---")
|
30 |
+
st.write("Connect with me:")
|
31 |
+
|
32 |
+
# Define column width for social media links
|
33 |
+
link_column_width = 1
|
34 |
|
35 |
# Create layout with four columns for social media links
|
36 |
+
kaggle, linkedin, google_scholar, youtube, github = st.columns(5)
|
37 |
|
38 |
# Social media links
|
39 |
+
kaggle.markdown("<p style='margin-left: 20px;'><a href='https://www.kaggle.com/muhammadimran112233'>Kaggle</a></p>", unsafe_allow_html=True)
|
40 |
+
linkedin.markdown("<p style='margin-left: 20px;'><a href='https://www.linkedin.com/in/muhammad-imran-zaman'>LinkedIn</a></p>", unsafe_allow_html=True)
|
41 |
+
google_scholar.markdown("<p style='margin-left: 20px;'><a href='https://scholar.google.com/citations?user=ulVFpy8AAAAJ&hl=en'>Google Scholar</a></p>", unsafe_allow_html=True)
|
42 |
+
youtube.markdown("<p style='margin-left: 20px;'><a href='https://www.youtube.com/@consolioo'>YouTube</a></p>", unsafe_allow_html=True)
|
43 |
+
github.markdown("<p style='margin-left: 20px;'><a href='https://github.com/Imran-ml'>GitHub</a></p>", unsafe_allow_html=True)
|
44 |
+
|
45 |
+
|
46 |
+
# # Social media links
|
47 |
+
# kaggle.markdown("[Kaggle](https://www.kaggle.com/muhammadimran112233)")
|
48 |
+
# linkedin.markdown("[LinkedIn](https://www.linkedin.com/in/muhammad-imran-zaman)")
|
49 |
+
# google_scholar.markdown("[Google Scholar](https://scholar.google.com/citations?user=ulVFpy8AAAAJ&hl=en)")
|
50 |
+
# youtube.markdown("[YouTube](https://www.youtube.com/@consolioo)")
|
51 |
+
# github.markdown("[GitHub](https://github.com/Imran-ml)")
|