Upload src/app.py with huggingface_hub
Browse files- src/app.py +15 -11
src/app.py
CHANGED
|
@@ -100,19 +100,23 @@ def analyze_meeting(text):
|
|
| 100 |
# ──────────────────────────────────────────────
|
| 101 |
# 4. UI 레이아웃 구성
|
| 102 |
# ──────────────────────────────────────────────
|
| 103 |
-
|
| 104 |
-
# 상단 헤더 영역
|
| 105 |
st.markdown("""
|
| 106 |
-
<div style="display:flex;align-items:center;gap:
|
| 107 |
background:linear-gradient(135deg,#16213E 0%,#0F3460 100%);
|
| 108 |
-
border-bottom:
|
| 109 |
-
<
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
<div style="font-size:
|
| 115 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
</div>
|
| 117 |
</div>
|
| 118 |
""", unsafe_allow_html=True)
|
|
|
|
| 100 |
# ──────────────────────────────────────────────
|
| 101 |
# 4. UI 레이아웃 구성
|
| 102 |
# ──────────────────────────────────────────────
|
| 103 |
+
# [수정된 헤더 영역] - 텍스트 사이즈를 대폭 키우고 클래스를 추가했습니다.
|
|
|
|
| 104 |
st.markdown("""
|
| 105 |
+
<div style="display:flex;align-items:center;gap:20px;padding:25px 30px;
|
| 106 |
background:linear-gradient(135deg,#16213E 0%,#0F3460 100%);
|
| 107 |
+
border-bottom:4px solid #E3000B;border-radius:15px;margin-bottom:25px;">
|
| 108 |
+
<!-- KT 로고 크기 확대 -->
|
| 109 |
+
<div style="font-family:'Rajdhani',sans-serif;font-size:3.5rem;font-weight:800;
|
| 110 |
+
color:#E3000B;letter-spacing:1px;line-height:1;">KT</div>
|
| 111 |
+
<div class="title-container">
|
| 112 |
+
<!-- 메인 타이틀 크기 확대 (style.css와 연동) -->
|
| 113 |
+
<div class="main-title" style="font-size:2.2rem; font-weight:700; color:#FFFFFF;">
|
| 114 |
+
Meeting AI 회의 분석 어시스턴트
|
| 115 |
+
</div>
|
| 116 |
+
<!-- 서브 타이틀 크기 확대 -->
|
| 117 |
+
<div class="sub-title" style="font-size:1.0rem; color:#E0E0E0; margin-top:5px;">
|
| 118 |
+
IT기술혁신팀 DX Consulting · Intelligent Meeting Solution
|
| 119 |
+
</div>
|
| 120 |
</div>
|
| 121 |
</div>
|
| 122 |
""", unsafe_allow_html=True)
|