krevas commited on
Commit
31b8ea8
1 Parent(s): b0057f3

Add application file

Browse files
Files changed (1) hide show
  1. app.py +29 -0
app.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ def create_organization_card(name, description, contact_info, links):
5
+ st.markdown(f"### {name}")
6
+ st.markdown(description)
7
+ st.markdown("**Contact Information:**")
8
+ st.markdown(contact_info)
9
+ st.markdown("**Links:**")
10
+ for platform, link in links.items():
11
+ st.markdown(f"[{platform}]({link})")
12
+
13
+
14
+ st.title("Lotte Data Communication Card")
15
+
16
+ # 롯데정보통신 정보 - 실제 정보로 교체 필요
17
+ name = "Lotte Data Communication"
18
+ description = """
19
+ Lotte Data Communication specializes in developing natural language processing (NLP) technologies
20
+ and applying them across various domains. Our goal is to enhance digital communication and
21
+ information processing in diverse fields through innovative NLP solutions.
22
+ """
23
+ contact_info = "Tel: 02-2626-4000\nAddress: 179, Gasan digital 2-ro, Geumcheon-gu, Seoul, South Korea"
24
+ links = {
25
+ "Homepage": "https://www.ldcc.co.kr",
26
+ "YouTube": "https://www.youtube.com/channel/UCn41TnmQX9Ccswo89wDBiyg",
27
+ }
28
+
29
+ create_organization_card(name, description, contact_info, links)