import { CategoryNav } from "./_components/CategoryNav"; import { publications } from "../../content/publications"; export const metadata = { title: "Publications | ANL", description: "AI Agent Networking Lab (ANL) research publications and patents overview", }; const REPRESENTATIVE_HIGHLIGHT_TITLES = [ "Globally Integrated Trust Authority (GITA) for Resource-Constrained Edge Devices in IoT and 6G", "Application Level Trust Authority (APPLETA) for Resource-Constrained Edge Devices in IoT and 6G", "mQUIC: Use of QUIC for Handover Support with Connection Migration in Wireless/Mobile Networks", "Use of QUIC for CoAP Transport in IoT Networks", "Use of QUIC for Mobile-Oriented Future Internet (Q-MOFI)", ]; export default function PublicationsIndexPage() { // Selected 5 representative publications const highlights = REPRESENTATIVE_HIGHLIGHT_TITLES.map((title) => publications.find( (p) => p.title.trim().toLowerCase() === title.trim().toLowerCase() ) ).filter((p): p is (typeof publications)[0] => Boolean(p)); return (
{/* Page Header */}

PUBLICATIONS

{/* Category Summary Cards */}
{/* Highlights Section */}

Highlights

{highlights.map((pub, idx) => (
{pub.publishedAt?.substring(0, 7) || "Recent"} · {pub.category.replace(/-/g, " ")} {pub.doi && ( <> · DOI: {pub.doi} )}

{pub.title}

{pub.authors && (

{pub.authors}

)} {pub.venue && (

{pub.venue}

)}
))}
); }