feat(poc4): rebrand demo for Smilegate data and AI

This commit is contained in:
devmrko
2026-07-22 12:38:10 +09:00
parent c4e158f639
commit 97ed5d38ab
3 changed files with 39 additions and 18 deletions

View File

@@ -1,10 +1,10 @@
"""Small, self-contained HMM presentation layer for the PoC4 Streamlit app."""
"""Small, self-contained Smilegate presentation layer for the PoC4 Streamlit app."""
HMM_CLEAN_THEME_CSS = """
<style>
:root {
color-scheme:light !important;
--hmm-navy:#003b70; --hmm-ink:#172b3a; --hmm-muted:#667785; --hmm-line:#dfe7ed;
--hmm-navy:#e05a33; --hmm-ink:#252525; --hmm-muted:#6b6b6b; --hmm-line:#e7e2df;
}
html, body, [data-testid="stAppViewContainer"], .stApp {
background:#fff !important; color:var(--hmm-ink) !important;
@@ -89,10 +89,10 @@ def render_hmm_login_brand(st: object) -> None:
st.markdown(
"""
<section class="kb-login-brand">
<div class="hmm-login-wordmark" aria-label="HMM">HMM</div>
<div class="kb-login-kicker">HMM SHIPPING &amp; LOGISTICS DEMO</div>
<h1>HMM AI 업무 에이전트</h1>
<p>사용자 인증 후 해운·물류 AI 질의와 보안 관리 기능을 이용할 수 있습니다.</p>
<div class="hmm-login-wordmark" aria-label="Smilegate">SMILEGATE</div>
<div class="kb-login-kicker">SMILEGATE DATA &amp; AI POC</div>
<h1>스마일게이트 게임 데이터 AI 에이전트</h1>
<p>게임 로그·서비스 데이터를 기반으로 AI 업무 효율화와 데이터 플랫폼 활용 방식을 검증합니다.</p>
</section>
""",
unsafe_allow_html=True,
@@ -103,9 +103,9 @@ def render_hmm_header(st: object) -> None:
st.markdown(
"""
<section class="hmm-app-header">
<div class="hmm-app-wordmark">HMM</div>
<h1>AI 업무 에이전트</h1>
<p>사용자 권한에 맞는 업무 질의와 보안 관리 기능을 제공합니다.</p>
<div class="hmm-app-wordmark">SMILEGATE</div>
<h1>게임 데이터 AI 에이전트</h1>
<p>게임 로그와 서비스 데이터를 AI로 질의·분석하고, 권한 기반 데이터 접근을 검증합니다.</p>
</section>
""",
unsafe_allow_html=True,