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

WODEY SWOT Analysis

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

Download PDF
{isClient ? (

Your browser does not support PDFs. Please download to view.

) : (
Loading PDF viewer...
)}
); }