'use client'; import dynamic from 'next/dynamic'; // Dynamically import the error boundary without SSR const ErrorBoundary = dynamic(() => import('./ErrorBoundary'), { ssr: false }); export default function ErrorBoundaryWrapper() { return ; }