import type { Metadata } from "next"; import Link from "next/link"; import Reveal from "@/components/Reveal"; import Marquee from "@/components/Marquee"; import Counter from "@/components/Counter"; import SectionLabel from "@/components/SectionLabel"; import HeroComposition from "./_components/HeroComposition"; export const metadata: Metadata = { title: "연구실 소개 (Intro)", description: "메타버스 상호운용성(MCM)과 QUIC 기반 멀티에이전트 오케스트레이션을 연구하는 경북대학교 사물인터넷 표준 연구실 소개.", }; // CUSTOMIZATION HOOK: the two research thrusts (cover spread comparison). const thrusts = [ { no: "Thrust 01", tag: "MCM", accent: "vermillion" as const, ko: "메타버스 상호운용성", en: "Metaverse Interoperability", desc: "이종(異種) 메타버스 플랫폼 간 객체·아바타·자산의 상호운용을 위한 공통 데이터 모델과 변환 계층을 설계합니다. oneM2M / W3C 표준을 기반으로 서로 다른 가상 환경이 동일한 의미(semantics)로 데이터를 교환합니다.", points: [ "공통 정보 모델(Common Information Model) 정의", "의미 보존 변환(semantic-preserving mapping) 계층", "상호운용성 테스트베드 및 적합성 검증", ], }, { no: "Thrust 02", tag: "QUIC", accent: "cobalt" as const, ko: "멀티에이전트 오케스트레이션", en: "Multi-Agent Orchestration", desc: "다수의 자율 에이전트가 저지연·다중스트림 환경에서 협력하도록 QUIC 전송 위에 오케스트레이션 아키텍처와 통신 인터페이스를 설계합니다. 연결 마이그레이션과 스트림 다중화로 메시지 라우팅을 최적화합니다.", points: [ "QUIC 스트림 다중화 기반 에이전트 메시지 라우팅", "오케스트레이터–에이전트 제어 인터페이스 설계", "연결 마이그레이션 기반 모바일·엣지 지원", ], }, ]; // CUSTOMIZATION HOOK: headline figures (animated counters). // `value: 2026` is marked static so it renders as a fixed year, not a // 0→2026 count-up. The year is also rendered at the smaller `display-sm` // scale (the other two figures use the full `display` scale), so the // 4-digit "2026" does not push the cell padding. See LAYOUT_AUDIT #11 + #13. const figures = [ { value: 2, label: "연구 축 · Research Thrusts", suffix: "", size: "display" as const, static: false }, { value: 4, label: "표준화 기구 · Standards Bodies", suffix: "", size: "display" as const, static: false }, { value: 2026, label: "Issue · 발행", suffix: "", size: "display-sm" as const, static: true }, ]; // CUSTOMIZATION HOOK: research keyword ticker. const keywords = [ "INTEROPERABILITY", "oneM2M", "W3C WoT", "QUIC TRANSPORT", "MULTI-AGENT", "STREAM MULTIPLEXING", "CONNECTION MIGRATION", "METAVERSE", "SEMANTIC MAPPING", "CONFORMANCE", ]; const focusAreas = [ { ko: "사물인터넷 표준화", en: "IoT Standardization" }, { ko: "메타버스 상호운용성", en: "Metaverse Interoperability" }, { ko: "전송 프로토콜(QUIC)", en: "Transport Protocols" }, { ko: "멀티에이전트 시스템", en: "Multi-Agent Systems" }, ]; export default function IntroPage() { return ( <> {/* ============ COVER SPREAD ============ */}
{/* Headline column */}

경북대학교 컴퓨터학부 · IoT Standards Lab

{/* Korean + English mixed, magazine-cover scale */}

사물인터넷의
표준을 짓다

Standards in Motion

메타버스 상호운용성(MCM)과 QUIC 기반 멀티에이전트 오케스트레이션. 국제 표준을 토대로 분산되고 이종적인 시스템이 동일한 의미로 데이터를 교환하고 협력하도록 설계합니다.

논문 보기 → 구성원
{/* Abstract illustration column */}

Fig. 01 — MCM 노드 메시 × QUIC 멀티스트림

{/* Keyword marquee band */} {/* ============ FIGURES / COUNTERS ============ */}
{figures.map((f, i) => (

{f.label}

))}
{/* ============ MISSION / PULL QUOTE ============ */}
“표준 적합성과 실증을 함께 추구하여, 연구가{" "} 실제 표준 문서와{" "} 오픈소스 구현으로 이어지게 한다.”

{/* CUSTOMIZATION HOOK: marginalia / footnote */} † 본 연구실은 사물인터넷 국제 표준을 토대로, 분산·이종 시스템이 동일한 의미로 데이터를 교환하고 협력할 수 있는 상호운용 기술을 연구합니다.

{/* ============ TWO THRUSTS — SIDE BY SIDE WITH CONNECTING LINE ============ */}
{/* Connecting line + node between the two thrusts (desktop) */}
×
{thrusts.map((t, i) => { const isVerm = t.accent === "vermillion"; return (
{t.no} {t.tag}

{t.ko}

{t.en}

{t.desc}

    {t.points.map((p) => (
  • {p}
  • ))}
); })}
{/* ============ FOCUS AREAS ============ */}
{focusAreas.map((f, i) => (
{String(i + 1).padStart(2, "0")}

{f.ko}

{f.en}

))}
); }