1import { inView } from "motion";
2
3export function initScrollReveal() {
4 const revealElements = document.querySelectorAll("[data-reveal]");
5
6 revealElements.forEach((el) => {
7 inView(
8 el,
9 () => {
10 el.classList.add("revealed");
11 },
12 { margin: "-50px" },
13 );
14 });
15}
16
17
18