My Three Js website is not working

I encountered an error while loading a 3D model in my Three.js application. The error message states that it failed to load the buffer file with the “.bin” extension, which is associated with the 3D model file. Additionally, there is a related error mentioning that the computed radius of the model’s buffer geometry is NaN, indicating that the “position” attribute of the model may have NaN (Not a Number) values.
i deployed it from github

the netlify site: https://joyful-lamington-297d9e.netlify.app/
the github repository: GitHub - rhunor/3jsportfolio: my portfolio made using 3js

the error codes

visitProperties @ lockdown-install.js:1
index-c6c8c8cd.js:71 THREE.BufferGeometry.computeBoundingSphere(): Computed radius is NaN. The “position” attribute is likely to have NaN values. mt
computeBoundingSphere @ index-c6c8c8cd.js:71
/midi_keyboard/.bin:1 Failed to load resource: the server responded with a status of 404 ()
index-c6c8c8cd.js:3580 Error: Could not load ./midi_keyboard/scene.gltf: THREE.GLTFLoader: Failed to load buffer “.bin”.)
at index-c6c8c8cd.js:3592:25276
at a (index-c6c8c8cd.js:3629:17945)
U0 @ index-c6c8c8cd.js:3580
index-c6c8c8cd.js:40 Error: Could not load ./midi_keyboard/scene.gltf: THREE.GLTFLoader: Failed to load buffer “.bin”.)
at index-c6c8c8cd.js:3592:25276
at a (index-c6c8c8cd.js:3629:17945)
wx @ index-c6c8c8cd.js:40
index-c6c8c8cd.js:40 Uncaught Error: Could not load ./midi_keyboard/scene.gltf: THREE.GLTFLoader: Failed to load buffer “.bin”.)
at index-c6c8c8cd.js:3592:25276
at a (index-c6c8c8cd.js:3629:17945)
/img/favicon_io/favicon.ico:1 Failed to load resource: the server responded with a status of 404 ()

This error does not seem to be a Netlify based error, so I’m not sure the forums will be much help here. A ThreeJs forum may be more helpful. However, I did find this resource: javascript - how to solve the error "THREE.GLTFLoader: Failed to load buffer "scene.bin"."? - Stack Overflow