gitextract_1xbf_hiw/ ├── .github/ │ └── workflows/ │ └── gh-pages.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── LICENSE.md ├── README.md ├── package.json └── src/ ├── data/ │ └── scrollRevealConfig.js ├── index.html ├── index.js ├── sass/ │ ├── abstracts/ │ │ ├── _helpers.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ ├── base/ │ │ ├── _base.scss │ │ └── _typography.scss │ ├── components/ │ │ └── _buttons.scss │ ├── layout/ │ │ ├── _footer.scss │ │ └── _sections.scss │ ├── sections/ │ │ ├── _about.scss │ │ ├── _contact.scss │ │ ├── _hero.scss │ │ └── _projects.scss │ └── vendors/ │ └── _bootstrap.scss ├── scripts/ │ ├── scrollReveal.js │ └── tiltAnimation.js └── styles.scss