"use client"; import React, { useEffect, useState } from "react"; import Link from "next/link"; import Reveal from "@/components/Reveal"; import Counter from "@/components/Counter"; import HeroComposition from "./_components/HeroComposition"; import { ProjectPageView } from "./_components/ProjectPageView"; import { getStatsSummary, getResearchAreaNames, getResearchProjects } from "../lib/api"; import type { ResearchProject } from "../content/types"; 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 [stats, setStats] = useState({ intlPubsCount: 0, patentCount: 0, stdDocsCount: 0, }); const [researchAreas, setResearchAreas] = useState([]); const [researchProjects, setResearchProjects] = useState([]); useEffect(() => { getStatsSummary().then((s) => { if (s) setStats(s); }); getResearchAreaNames().then((areas) => { if (areas) setResearchAreas(areas); }); getResearchProjects().then((projs) => { if (projs) setResearchProjects(projs); }); }, []); 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) */}
International Journals & Conference
Standardization Contributions
Patent
(IoT Architecture & Protocols)
{/* Research Project PageView Component */} {/* 14 Research Areas Grid */}
Core Domains

Research Areas

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

{researchAreas.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 →
); }