import type { Metadata } from "next";

import { MeetingSummaryScreen } from "@/features/pswg/meeting-summary/components/meeting-summary-screen";

export const metadata: Metadata = {
  title: "Meeting summary",
};

// CDC-GPSF sees the same view-only meeting summary table as PSWG, plus an
// export button. Row links stay inside the CDC-GPSF section.
export default function CdcGpsfMeetingSummaryPage() {
  return (
    <MeetingSummaryScreen
      detailBasePath="/cdc-gpsf/meeting-summary"
      showExportButton
    />
  );
}
