fix biomejs
All checks were successful
build dist / build-dist (push) Successful in 29s

This commit is contained in:
z0x 2025-04-04 23:42:23 -04:00
parent 49b3d02c4e
commit d531e4cac9
16 changed files with 275 additions and 1189 deletions

View file

@ -1,12 +1,14 @@
import { animate, stagger } from "motion";
const elements = document.querySelectorAll(".motion-links, .motion-logo, .motion-text, .motion-footer");
const elements = document.querySelectorAll(
".motion-links, .motion-logo, .motion-text, .motion-footer",
);
animate(
elements,
{ opacity: [0, 1] },
{
delay: stagger(0.2, { startDelay: 0.1 }),
ease: "easeIn"
ease: "easeIn",
},
);