hyerong commited on
Commit
b1c6aca
·
verified ·
1 Parent(s): 93628bb

Upload src/app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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:14px;padding:18px 24px;
107
  background:linear-gradient(135deg,#16213E 0%,#0F3460 100%);
108
- border-bottom:2px solid #E3000B;border-radius:12px;margin-bottom:20px;">
109
- <div style="font-family:'Rajdhani',sans-serif;font-size:2.2rem;font-weight:700;
110
- color:#E3000B;letter-spacing:2px;line-height:1;">KT</div>
111
- <div>
112
- <div style="font-size:1.1rem;font-weight:600;color:#fff;line-height:1.3;">
113
- MeetingAI · 회의 분석 어시스턴트</div>
114
- <div style="font-size:0.76rem;color:#8892A4;letter-spacing:0.5px;">
115
- IT기술혁신팀 DX Consulting · AI 기반 회의 자동화 서비</div>
 
 
 
 
 
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)