I already provided an indication of how to debug it, and you’ve provided the contents of your home.jsx
file.
The error indicates that something is trying to load ./components/home/home
and that it cannot find it.
As previously mentioned, you should be looking for “what’s trying to load it”.
So…
If you know where the component is being loaded, check the file paths to make sure they’re correct.
If you don’t know where it’s being loaded, search your code to find where it’s being loaded, then check the file paths to make sure they’re correct.