{pub.title}
{pub.authors && ({pub.authors}
)} {pub.venue && ({pub.venue}{pub.volume ? `, ${pub.volume}` : ""}
)}import type { Metadata } from "next"; import { CategoryNav } from "./_components/CategoryNav"; import { publications } from "../../content/publications"; export const metadata: Metadata = { title: "Publications", 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 (
{pub.authors}
)} {pub.venue && ({pub.venue}{pub.volume ? `, ${pub.volume}` : ""}
)}