| import streamlit as st |
|
|
|
|
| def create_organization_card(name, description, contact_info, links): |
| st.markdown(f"### {name}") |
| st.markdown(description) |
| st.markdown("**Contact Information:**") |
| st.markdown(contact_info) |
| st.markdown("**Links:**") |
| for platform, link in links.items(): |
| st.markdown(f"[{platform}]({link})") |
|
|
|
|
| st.title("Lotte Data Communication Card") |
|
|
| |
| name = "Lotte Data Communication" |
| description = """ |
| Lotte Data Communication specializes in developing natural language processing (NLP) technologies |
| and applying them across various domains. Our goal is to enhance digital communication and |
| information processing in diverse fields through innovative NLP solutions. |
| """ |
| contact_info = "Tel: 02-2626-4000\nAddress: 179, Gasan digital 2-ro, Geumcheon-gu, Seoul, South Korea" |
| links = { |
| "Homepage": "https://www.ldcc.co.kr", |
| "YouTube": "https://www.youtube.com/channel/UCn41TnmQX9Ccswo89wDBiyg", |
| } |
|
|
| create_organization_card(name, description, contact_info, links) |
|
|