chore(prettier): update prettier config

This commit is contained in:
Shintaro Jokagi 2025-05-28 13:50:37 +12:00
parent ceef83d609
commit a77c141d35
No known key found for this signature in database
GPG key ID: 0DDF8FA44C9A0DA8
66 changed files with 709 additions and 709 deletions

View file

@ -1,10 +1,10 @@
export function getTitleAnimation(delay = 0, duration = 0.3, once = true) {
return {
initial: { opacity: 0.001, translateY: 20, filter: "blur(4px)" },
initial: { opacity: 0.001, translateY: 20, filter: 'blur(4px)' },
whileInView: {
opacity: 1,
translateY: 0,
filter: "blur(0px)",
filter: 'blur(0px)',
transition: { duration, delay },
},
viewport: { once },