TechyCode commited on
Commit
7347127
Β·
verified Β·
1 Parent(s): 52d1ea0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -88,14 +88,15 @@ with tab2:
88
  st.write("**Libraries & Tools:**")
89
  st.write("NumPy, Pandas, Scikit-learn, OpenCV, NLTK, Pillow, Streamlit, Matplotlib, Seaborn, Git")
90
 
 
91
  st.subheader("πŸ“¬ Contact")
92
  col1, col2, col3 = st.columns(3)
93
  with col1:
94
- st.markdown("[πŸ“§ Email](mailto:[email protected])")
95
  with col2:
96
- st.markdown("[πŸ‘” LinkedIn](https://linkedin.com/in/)")
97
  with col3:
98
- st.markdown("[πŸ’» GitHub](https://github.com/)")
99
 
100
  st.markdown("---")
101
  st.markdown("Β© 2025 Solar Industry AI Assistant | Developed by Uditanshu Pandey")
 
88
  st.write("**Libraries & Tools:**")
89
  st.write("NumPy, Pandas, Scikit-learn, OpenCV, NLTK, Pillow, Streamlit, Matplotlib, Seaborn, Git")
90
 
91
+ # Contact section with styled buttons
92
  st.subheader("πŸ“¬ Contact")
93
  col1, col2, col3 = st.columns(3)
94
  with col1:
95
+ st.markdown('<a href="mailto:[email protected]" style="text-decoration: none;"><button style="background-color: #FF9900; color: white; border: none; padding: 10px; border-radius: 5px; width: 100%;">πŸ“§ Email</button></a>', unsafe_allow_html=True)
96
  with col2:
97
+ st.markdown('<a href="https://linkedin.com/in/" style="text-decoration: none;"><button style="background-color: #0077B5; color: white; border: none; padding: 10px; border-radius: 5px; width: 100%;">πŸ‘” LinkedIn</button></a>', unsafe_allow_html=True)
98
  with col3:
99
+ st.markdown('<a href="https://github.com/" style="text-decoration: none;"><button style="background-color: #333; color: white; border: none; padding: 10px; border-radius: 5px; width: 100%;">πŸ’» GitHub</button></a>', unsafe_allow_html=True)
100
 
101
  st.markdown("---")
102
  st.markdown("Β© 2025 Solar Industry AI Assistant | Developed by Uditanshu Pandey")