- supporters/: Astro 사이트 소스 (pages·components·posts·factSheet/authors/videos 데이터, 뉴스룸 916건 빌더, 발행 게이트 check.mjs, vercel.json) - supporters/docs/: v1~v3 스크린샷 기록 - docs/INFINITH_Viewclinic_Supporters_Site_Design_v0.1.md: 서포터즈 사이트 설계 문서 - docs/NEXT_SESSION_SUPPORTERS_AUTOBUILD.md: 다음 세션 자동 빌드 프롬프트 - docs/reports/Viewclinic_Supporters_vs_Official_AEO_Audit.xlsx + scripts/build_supporters_audit_xlsx.py: 서포터즈 vs 공식 사이트 AEO/GEO 감사 비교 Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
10 lines
346 B
Plaintext
10 lines
346 B
Plaintext
---
|
|
// 직접 답변 블록. 기업은행 블로그의 "세 줄 요약"에서 가져온 구조. 답변엔진이 잘라 쓰는 단락이다.
|
|
interface Props { items: string[] }
|
|
const { items } = Astro.props;
|
|
---
|
|
<section class="summary" aria-label="세 줄 요약">
|
|
<h2>세 줄 요약</h2>
|
|
<ol>{items.map((t) => <li>{t}</li>)}</ol>
|
|
</section>
|