import React from "react"; import { standardsBodies } from "../../content/standards"; export default function StandardizationPage() { const totalDocs = standardsBodies.reduce( (acc, body) => acc + body.projects.reduce((pAcc, proj) => pAcc + proj.documents.length, 0), 0 ); return (
{/* Header */}
Open Standards & Contributions

표준화 연구 및 기여

IEC TC100, ISO/IEC JTC1, ITU-T, TTA 등 국제/국내 표준화 기구를 통해 제정 및 진행 중인 {standardsBodies.length}개 기구 {totalDocs}건의 표준 규격 문서 계층 인벤토리입니다.

{/* Standards Bodies Section */}
{standardsBodies.map((body, idx) => (
[{body.scope}] {body.role && ( {body.role} )}

{body.org}

{body.full} ({body.period})

Projects: {body.projects.length}
{/* 3-Tier Hierarchy: Projects & Documents */}
{body.projects.map((proj, pIdx) => (
{proj.wg} {proj.name}
{proj.documents.length} Docs
{proj.documents.length > 0 ? (
{proj.documents.map((doc, dIdx) => (

“{doc.title}”

{doc.status}
{doc.ref} {doc.publishedAt && ( {doc.publishedAt} )}
))}
) : (
진행 중인 주 프로젝트 규격서
)}
))}
))}
); }