One idea
A module is a JavaScript file with one clear job. Export what other files need, and import it where you use it.
Good project shape makes your code easier to read in a hackathon review. It also makes your README simpler.
Why shape matters
When all your code sits in one app.js file, every change feels risky. You scroll too much. You also mix UI, data fetching, and helper logic in one place.
A recruiter or judge may spend only a few minutes in your repo. Clear files help them see that you understand the code, not just the final screen.