Feature/website (#5)

* Add basic website
* Add website deploy action
This commit is contained in:
Daniel Lautzenheiser
2022-09-30 08:59:03 -06:00
committed by GitHub
parent de040e6727
commit 27659baca6
150 changed files with 20752 additions and 7 deletions

View File

@ -0,0 +1,9 @@
// Make scroll behavior of internal links smooth
exports.onClientEntry = () => {
const SmoothScroll = require('smooth-scroll');
new SmoothScroll('a[href*="#"]', {
offset() {
return document.querySelector('#header').offsetHeight;
},
});
};