import React from "react"; import Link from "next/link"; import HeroComposition from "./_components/HeroComposition"; import { DirectionsBlock } from "./_components/DirectionsBlock"; import { ProjectPageView } from "./_components/ProjectPageView"; import { publications, patents } from "../content/publications"; import { standardsBodies } from "../content/standards"; // CUSTOMIZATION HOOK: 14 Core Research Areas const RESEARCH_AREAS: string[] = [ "Quick UDP Internet Connection (QUIC)", "QUIC-based Mobility and Multi-Streaming Support", "Services and Protocols for Internet-of-Things (IoT)", "Constrained Application Protocol (CoAP)", "In-Vehicle Infotainment (IVI)", "Optical Wireless or Visible Light Communications (OWC/VLC)", "Lighting Control Networks (PLASA E1.45) for LED-based VLC", "Mobility Management: Distributed Mobility Control", "Multicast Routing Protocols and Reliable Multicasting", "mobile SCTP (mSCTP): Soft Handover in Transport Layer", "Stream Control Transmission Protocol (SCTP)", "Telecommunication Optimization: Network Planning and Management", "TAC/TAL Configuration for Paging and Location Management", "Tabu Search and Genetic Algorithm", ]; const INTERNATIONAL_SDOS = [ "IEC TC100: Multimedia Systems and Equipment", "ISO/IEC JTC1/SC41: Internet-of-Things (IoT) Applications", "ITU-T SG20: IoT Services", "ITU-T SG13: Mobility Management", "ISO/IEC JTC1/SC6: Reliable Multicasting", ]; export default function HomePage() { const intlPubsCount = publications.filter( (p) => p.category === "intl-journal-conf" ).length; const patentCount = patents.length; const stdDocsCount = standardsBodies.reduce( (sum, b) => sum + b.projects.reduce((pSum, p) => pSum + p.documents.length, 0), 0 ); return (
{/* Hero Section */}
Kyungpook National University · AI Agent Networking Lab (ANL)

Multi-Agent
Orchestration

The AI Agent Networking Laboratory (ANL) studies agent networking technologies and standard frameworks that enable AI agents to communicate and collaborate with one another for multi-agent orchestration.

{/* Metrics Row (Derived from real content data) */}
{intlPubsCount}
International Journals & Conference
{patentCount}
Patent
{stdDocsCount}
Standardization Contributions
{/* Research Project PageView Component */} {/* 14 Research Areas Grid */}
Core Domains

Research Areas

{RESEARCH_AREAS.length} fundamental networking protocols and AI system domains

{RESEARCH_AREAS.map((area, idx) => { const no = String(idx + 1).padStart(2, "0"); const isOdd = (idx + 1) % 2 !== 0; return (
{no} Topic #{no}

{area}

); })}
{/* International Standardizations Section */}
Global Engagement

International Standardizations

Along with the research activities, we are also in pursuit of the International Standardization, from the market deployment perspective, in the following SDOs (Standard-Defining Organizations):

    {INTERNATIONAL_SDOS.map((sdo, idx) => (
  • {sdo}
  • ))}
Please refer to here for details →
{/* Directions Block */}
); }