Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
/* Sara Palma — Reveal on scroll */ (function () { 'use strict'; var observer = new IntersectionObserver(function (entries) { entries.forEach(function (entry) { if (entry.isIntersecting) { entry.target.classList.add('in'); observer.unobserve(entry.target); } }); }, { threshold: 0.15 }); document.querySelectorAll('.fade-in').forEach(function (el) { observer.observe(el); }); /* Staggered hero role lines */ document.querySelectorAll('.role-line').forEach(function (el, i) { el.style.transitionDelay = (i * 90) + 'ms'; }); }());
Vai al contenutoWelcome to WordPress. This is your first post. Edit or delete it, then start writing!
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.