illustration

Coming Soon

New WordPress website is being built and will be published soon

const ro = new IntersectionObserver((entries) => { entries.forEach(e => { if(e.isIntersecting){ e.target.classList.add('visible'); ro.unobserve(e.target); } }); }, {threshold:0.1}); document.querySelectorAll('.reveal').forEach(el => ro.observe(el)); const nav = document.getElementById('tt-nav'); window.addEventListener('scroll', () => { nav.classList.toggle('scrolled', window.scrollY > 50); }, {passive:true});