"use client"; import { useEffect, useState } from "react"; import { Button } from "@/components/ui/button"; import Link from "next/link"; import Image from "next/image"; export default function SwotAnalysisPage() { const [isClient, setIsClient] = useState(false); // This ensures the PDF viewer only renders on the client side useEffect(() => { setIsClient(true); }, []); return (

Project DPE SWOT Analysis

An in-depth analysis of Strengths, Weaknesses, Opportunities, and Threats for the Project DPE platform.

Download PDF
{isClient ? (
SWOT Analysis
) : (
Loading viewer...
)}
); }