├── .gitignore ├── app.js ├── cheatsheet.txt ├── package.json ├── static ├── bg.jpg ├── img │ ├── 1.png │ ├── 16bdc130-7e8c-4926-9f8d-1d5735e09b5b.jfif │ ├── 2.png │ ├── 3.png │ ├── logo.png │ ├── logo1.png │ ├── logo2.png │ ├── logo3.png │ └── logo4.png ├── index.js ├── style.css └── styleContact.css └── views ├── base.pug ├── contact.pug ├── home.pug └── index.pug /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/app.js -------------------------------------------------------------------------------- /cheatsheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/cheatsheet.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/package.json -------------------------------------------------------------------------------- /static/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/bg.jpg -------------------------------------------------------------------------------- /static/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/1.png -------------------------------------------------------------------------------- /static/img/16bdc130-7e8c-4926-9f8d-1d5735e09b5b.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/16bdc130-7e8c-4926-9f8d-1d5735e09b5b.jfif -------------------------------------------------------------------------------- /static/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/2.png -------------------------------------------------------------------------------- /static/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/3.png -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/logo1.png -------------------------------------------------------------------------------- /static/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/logo2.png -------------------------------------------------------------------------------- /static/img/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/logo3.png -------------------------------------------------------------------------------- /static/img/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/img/logo4.png -------------------------------------------------------------------------------- /static/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/style.css -------------------------------------------------------------------------------- /static/styleContact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/static/styleContact.css -------------------------------------------------------------------------------- /views/base.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/views/base.pug -------------------------------------------------------------------------------- /views/contact.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/views/contact.pug -------------------------------------------------------------------------------- /views/home.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/views/home.pug -------------------------------------------------------------------------------- /views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DanceWebsite/HEAD/views/index.pug --------------------------------------------------------------------------------