import streamlit as st import webbrowser def team_details(): st.title("Meet the Developer!") member = { "name": "Mohammed Musharraf", "role": "Lead Developer", "description": """Hi, I'm Mohammed Musharraf, the Lead Developer of our team. I have a strong passion for building innovative solutions and a solid background in web development and AI. I thrive on tackling challenging problems and enjoy creating applications that make a difference. I'm always eager to learn new technologies and share my knowledge with others. In my free time, I contribute to open-source projects and engage with the developer community.""", "linkedin": "https://www.linkedin.com/in/mohammed-musharraf11", "github": "https://github.com/MohammedMusharraf11/", "instagram": "https://www.instagram.com/mush_xxf/" } st.header(member["name"]) st.subheader(member["role"]) st.write(member["description"]) linkedin_url = member["linkedin"] github_url = member["github"] instagram_url = member["instagram"] if st.button("Connect with me on LinkedIn"): webbrowser.open_new_tab(linkedin_url) if st.button("View my GitHub"): webbrowser.open_new_tab(github_url) if st.button("Follow me on Instagram"): webbrowser.open_new_tab(instagram_url) if __name__ == "__main__": team_details()