// the find
CodeWithHarry/DanceWebsite
This is the dance website from the web development course by Code With Harry
A teaching demo website for a dance studio, built as a course project by Code With Harry. It's a Node/Express app with Pug templates, existing purely to illustrate basic web dev concepts to beginners. Not a reusable template or framework — just a worked example.
- Uses Express + Pug server-side rendering, which is a reasonable stack for teaching request/response and template inheritance to beginners
- Template inheritance via base.pug is demonstrated correctly — good pattern for students to internalize early
- Separation of static assets from views is done properly for the scale of the project
- No README explaining what the project teaches, how to run it, or what concepts it covers — a student cloning this cold has nothing to go on
- The .jfif image file in static/img suggests assets were copy-pasted rather than prepared — not a habit you want beginners to learn
- 520 stars and 195 forks are entirely explained by course traffic, not by the repo having any standalone value
- No package.json start script or environment documentation; assumes you already watched the video to know how to run it