import streamlit as st from constant import * st.set_page_config(page_title="Certificates", page_icon="👍") #layout="wide" # page functions ---------------------------------------------------------------- def Certificate_component(header, content): st.subheader(header, divider='grey') st.write(content) # Neo4j Certified Professional ---------------------------------------------------------------- Certificate_component(Certificate[1][0], Certificate[1][1]) st.link_button("Show Credential", "https://graphacademy.neo4j.com/c/1266544c-bf9a-48c3-b9c3-404fea532914/") # Neo4j Graph Data Science Certification ---------------------------------------------------------------- Certificate_component(Certificate[2][0], Certificate[2][1]) st.link_button("Show Credential", "https://graphacademy.neo4j.com/c/8bb4232d-0ddb-43ac-9e59-7dd49e30ac55/") # Introduction to Generative AI ---------------------------------------------------------------- Certificate_component(Certificate[3][0], Certificate[3][1]) st.link_button("Show Credential", "https://www.cloudskillsboost.google/public_profiles/bef4bb07-9143-4af0-897a-16f3e7ee3c52/badges/8788951?utm_medium=social&utm_source=linkedin&utm_campaign=ql-social-share") # Responsible AI: Applying AI Principles with Google Cloud ---------------------------------------------------------------- Certificate_component(Certificate[4][0], Certificate[4][1]) st.link_button("Show Credential", "https://www.cloudskillsboost.google/public_profiles/bef4bb07-9143-4af0-897a-16f3e7ee3c52/badges/8802352?utm_medium=social&utm_source=linkedin&utm_campaign=ql-social-share") # FME Certified Professional ---------------------------------------------------------------- Certificate_component(Certificate[5][0], Certificate[5][1]) st.link_button("Show Credential", "https://verify.skilljar.com/c/394vd2w3afwz") # FME Flow Certified Professional ---------------------------------------------------------------- Certificate_component(Certificate[6][0], Certificate[6][1]) st.link_button("Show Credential", "https://verify.skilljar.com/c/sqcc2m92297t") # Intel Edge AI Certification ---------------------------------------------------------------- Certificate_component(Certificate[7][0], Certificate[7][1]) st.link_button("Show Credential", "https://www.credly.com/badges/4c37350e-af67-47e9-ba2c-973b5aa312ef/linked_in_profile") # ESRI MOOC Training Certificate on Image in Action ---------------------------------------------------------------- Certificate_component(Certificate[8][0], Certificate[8][1]) st.link_button("Show Credential", "https://www.esri.com/training/TrainingRecord/Certificate/drwliu/60ee6b41848a70360bfefe9b/-720") # Amazon Web Services (AWS) Certified ---------------------------------------------------------------- Certificate_component(Certificate[9][0], Certificate[9][1]) st.link_button("Show Credential", "https://www.udemy.com/certificate/UC-89c37815-e7f7-4e0c-9de7-8fd0b05420dc/") # A-Z Machine Learning using Azure Machine Learning (AzureML) ---------------------------------------------------------------- Certificate_component(Certificate[10][0], Certificate[10][1]) st.link_button("Show Credential", "https://www.udemy.com/certificate/UC-aad91179-4bbc-4942-92cf-89d260d5cf26/") # Advanced Microsoft Power BI ---------------------------------------------------------------- Certificate_component(Certificate[11][0], Certificate[11][1]) st.link_button("Show Credential", "https://www.linkedin.com/help/learning/answer/a598944/learning-certificates-of-completion-faqs?trk=lynda_redirect_learning&lang=en") # Azure Administrator: AZ-103/AZ-104 ---------------------------------------------------------------- Certificate_component(Certificate[12][0], Certificate[12][1]) st.link_button("Show Credential", "https://www.udemy.com/certificate/UC-75926ebb-05f2-4841-aaae-1599c94294eb/") # Tableau Data Scientist ---------------------------------------------------------------- Certificate_component(Certificate[13][0], Certificate[13][1]) st.link_button("Show Credential", "https://www.credly.com/badges/3dee6f46-afff-435e-a6fe-cbeb9612f315/") # Tableau Analyst ---------------------------------------------------------------- Certificate_component(Certificate[14][0], Certificate[14][1]) st.link_button("Show Credential", "https://www.credly.com/badges/0c140c82-8a8a-4413-a593-54f6b3524560/") # Tableau Developer ---------------------------------------------------------------- Certificate_component(Certificate[15][0], Certificate[15][1]) st.link_button("Show Credential", "https://www.credly.com/badges/c055f478-8da9-4019-bc69-264d3bc69af2/")