import { greetUser } from '$utils/greet'; import { initializeFadeInAnimation } from '$utils/fadeAnimation'; window.Webflow ||= []; window.Webflow.push(() => { const name = 'John Doe'; greetUser(name); initializeFadeInAnimation('.fade-effect', { duration: 2, opacityStart: 0, yStart: 100, triggerStart: 'top 80%', ease: 'power3.out', }); });