import React from "react";
import { activeMembers, alumni } from "../../content/members";
export default function MembersPage() {
const professor = activeMembers.find((m) => m.degree === "Professor");
const phdStudents = activeMembers.filter(
(m) => m.degree === "PhD" || m.degree === "PhDCandidate" || m.degree === "PhDStudent"
);
const msStudents = activeMembers.filter(
(m) => m.degree === "MSCandidate" || m.degree === "MSStudent"
);
return (
{/* Header */}
People & Researchers
연구실 구성원
지도교수와 재학 연구원 16명, 그리고 IT 산업체 및 학계에서 활약하고 있는 60명의 졸업생 인벤토리입니다.
{/* Professor Section */}
Faculty
{professor?.ko || "고석주"} 교수
{professor?.en || "Seok-Joo Koh"}, Professor
경북대학교 컴퓨터학부 교수 · AI 에이전트 네트워크 연구실 (ANL) 지도교수.
QUIC/gRPC 통신, A2A/ACP 프로토콜, MCP & SKILL 아키텍처 및 에이전트 오케스트레이션 연구를 총괄하고 있습니다.
Affiliation & Office
Kyungpook National University
IT Building #5 Room 527
Daegu, Republic of Korea
{/* Active Researchers Section */}
Active Researchers ({activeMembers.length} Members)
재학 연구원
{/* Ph.D. Candidates / Students */}
Ph.D. Course ({phdStudents.length})
{phdStudents.map((mem, idx) => (
{mem.ko}
{mem.degree}
{mem.en}
{mem.affiliation && (
with {mem.affiliation}
)}
))}
{/* M.S. Candidates / Students */}
M.S. Course ({msStudents.length})
{msStudents.map((mem, idx) => (
{mem.ko}
{mem.degree}
{mem.en}
{mem.affiliation && (
with {mem.affiliation}
)}
))}
{/* Alumni Section (Native
/ progressive disclosure) */}
Alumni Inventory ({alumni.length} Graduates)
졸업생 목록
전체 졸업생 {alumni.length}명 열람하기
2007년부터 2026년까지 수여된 박사(Ph.D.) 및 석사(M.S.) 졸업생 이력
전체 보기 ▾
접기 ▴
{alumni.map((alum, idx) => (
{alum.ko} ({alum.en})
{alum.degree}
{alum.graduatedAt}
{alum.major && {alum.major}}
{alum.currentPosition && (
{alum.currentPosition}
)}
))}
);
}