Hey all, I've used this package successfully in an app router project but am struggling to get this to work in a page router project. At first, I was getting the following with the import statement used in the example: `Error: You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps /` Then, attempting NextJS `dynamic` import I would get the following error. <img width="1048" alt="Image" src="https://github.com/user-attachments/assets/1be9b6e3-96d3-408c-a068-1c801e7bee10" /> ```const MeshGradient = dynamic( const MeshGradient = dynamic( () => import('@paper-design/shaders-react').then((mod) => mod.MeshGradient), { ssr: false, loading: () => <div className="w-[500px] h-[200px]" />, } ) [...] <MeshGradient color1="#FFC0CB" color2="#FFFF00" color3="#0000FF" color4="#800080" speed={0.25} style={{ width: 500, height: 200 }} /> ``` Any advice would be greatly appreciated!