"use client"; import BackToMC from "@/components/mission-control/BackToMC"; import dynamic from "next/dynamic"; // Dynamically import PDFViewer with SSR disabled const PDFViewer = dynamic(() => import("@/components/mission-control/PDFViewerClient"), { ssr: false, loading: () => (

Loading PDF viewer...

), }); export default function PdfViewerPage() { return (
{/* Header */}

📄 PDF Viewer

View and analyze PDF documents

{/* Content */}
); }