Test the loading mini-game with different configurations
// Implementation Example
import dynamic from 'next/dynamic';
const LoadingGameHost = dynamic(
() => import('@/components/CV_Game/LoadingGameHost'),
{ ssr: false }
);
<LoadingGameHost
isLoading={false}
onExit={() => setIsLoading(false)}
logoSrc="/brand/logo-ball.png"
theme={{
bg: "bg-white/90",
accent: "#197A56"
}}
/>