Design comparison
Solution retrospective
Hello!
This is my solution for the Space Tourism Website challenge. It is quite responsive, although it has some issues on some certain device screens and landscape modes. I might (not) fix those in the future, but for now I just want to get it done. It was a headache to make...
Any feedback and bug reports are welcome (apart from those I am aware of) Thanks!
Community feedback
- @LucianoDLimaPosted over 1 year ago
Well done! Looks really good, im still new to react myself so I can't say much about that, but I encountered a bug that also happened in my current project where if you reload the page after you use one of the routes, the page gives a 404 not found screen, this happens cz your page is not rendering in the server side
I was using vercel so for me the fix was to create a new config file like this. Since you're using netilify it will most likely be different so you should take a look at their documentation
vercel.json { "routes": [{ "src": "/[^.]+", "dest": "/", "status": 200 }] }
Marked as helpful0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord