5단계 AI 파이프라인: 1. Kei 실장(Opus via Kei API) — 꼭지 추출 + 정보 구조 파악 2. 디자인 팀장 — FAISS 블록 검색 + Opus 추천 + Sonnet 블록 매핑 3. Kei 편집자(Kei API) — 도메인 전문 텍스트 정리 4. 디자인 실무자(Sonnet + Jinja2) — CSS 변수 조정 + HTML 조립 5. 디자인 팀장(Sonnet) — 균형 재검토 (최대 2회 루프) 블록 라이브러리 46개 (6 카테고리) + _legacy 13개 FAISS 블록 검색 (bge-m3, 1024차원) SVG N개 동적 배치 (cos/sin 좌표 계산) Pillow 이미지 크기 측정 + base64 인라인 컨테이너 예산 기반 블록 배치 (zone별 높이 px) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
<!-- 피라미드 계층: 위에서 아래로 넓어지는 계층 구조 (SVG) -->
|
|
<!--
|
|
📋 pyramid-hierarchy
|
|
─────────────────
|
|
용도: 위계, 우선순위, 상위→하위 개념 (좁은→넓은)
|
|
슬롯: levels[] (상단부터, 각 레벨에 label, color)
|
|
-->
|
|
<div class="block-pyramid">
|
|
<svg viewBox="0 0 500 {{ levels|length * 70 + 20 }}" width="100%" xmlns="http://www.w3.org/2000/svg" font-family="Pretendard Variable, sans-serif">
|
|
<defs>
|
|
{% for level in levels %}
|
|
<linearGradient id="pyrGrad{{ loop.index }}" x1="0" y1="0" x2="1" y2="0">
|
|
<stop offset="0%" stop-color="{{ level.color | default('#2563eb') }}" />
|
|
<stop offset="100%" stop-color="{{ level.color | default('#2563eb') }}" stop-opacity="0.7" />
|
|
</linearGradient>
|
|
{% endfor %}
|
|
<filter id="pyrShadow">
|
|
<feDropShadow dx="0" dy="2" stdDeviation="3" flood-opacity="0.12" />
|
|
</filter>
|
|
</defs>
|
|
{% for level in levels %}
|
|
{% set i = loop.index0 %}
|
|
{% set y = i * 65 + 10 %}
|
|
{% set w_half = 60 + i * 55 %}
|
|
<rect x="{{ 250 - w_half }}" y="{{ y }}" width="{{ w_half * 2 }}" height="50" rx="6" fill="url(#pyrGrad{{ loop.index }})" filter="url(#pyrShadow)" />
|
|
<text x="250" y="{{ y + 30 }}" text-anchor="middle" fill="white" font-size="14" font-weight="700">{{ level.label }}</text>
|
|
{% endfor %}
|
|
</svg>
|
|
</div>
|
|
|
|
<style>
|
|
.block-pyramid {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 10px 0;
|
|
}
|
|
.block-pyramid svg {
|
|
max-width: 450px;
|
|
}
|
|
</style>
|