This commit is contained in:
2026-02-13 14:19:15 +01:00
commit c0beb640e6
1591 changed files with 308373 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/**
* Timeline
*/
'use strict';
(function () {
// Init Animation on scroll
AOS.init({
disable: function () {
const maxWidth = 1024;
return window.innerWidth < maxWidth;
},
once: true
});
})();