diff --git a/app.py b/app.py
index 4a8ca74..073533a 100644
--- a/app.py
+++ b/app.py
@@ -376,9 +376,43 @@ def render_show():
def render_stage_intro(data):
- st.markdown('
π ν΄μ»€ν€
', unsafe_allow_html=True)
+ st.markdown('π MLOps ν΄μ»€ν€ 2026
', unsafe_allow_html=True)
st.markdown('ν νΈμ±
', unsafe_allow_html=True)
- st.info("Task 9μμ ꡬν")
+
+ people = data.get("people", [])
+ teams = {}
+ for p in people:
+ teams.setdefault(p["team"], []).append(p["name"])
+ team_names = sorted(teams.keys())
+
+ # 4Γ2 그리λ (7ν + 1 λΉ μΉΈ)
+ rows = [team_names[i:i + 4] for i in range(0, len(team_names), 4)]
+ for row in rows:
+ cols = st.columns(4)
+ for col, team in zip(cols, row):
+ members = teams[team]
+ members_html = "
".join(members)
+ with col:
+ st.markdown(
+ f''
+ f'
{team}
'
+ f'
{members_html}
'
+ f'
',
+ unsafe_allow_html=True,
+ )
+
+ st.markdown(
+ ''
+ 'π μμ: ν νΈμ± β μ£Όμ μκ° β ν΄νΉ (2μκ°) β λ°ν β ν¬ν β μμ'
+ '
',
+ unsafe_allow_html=True,
+ )
+ st.markdown(
+ ''
+ 'π μμ λΆλ¬Έ: π μ¬λ―Έμ Β· π μμ±λμ Β· π μ€μ©μ±μ (1ν 1μ)'
+ '
',
+ unsafe_allow_html=True,
+ )
def render_stage_topics(data):