feat(nds): tweak animations durations

This commit is contained in:
2026-02-26 14:58:46 +01:00
parent 3216d6e79e
commit eba1b8d84c
6 changed files with 35 additions and 35 deletions

View File

@@ -43,7 +43,7 @@ export const useContactStore = defineStore("contact", {
duration: 0.1,
ease: "none",
},
2,
1,
)
.fromTo(
this.intro,
@@ -53,7 +53,7 @@ export const useContactStore = defineStore("contact", {
duration: 0.1,
ease: "none",
},
2.15,
1.15,
)
.fromTo(
this.intro,
@@ -67,7 +67,7 @@ export const useContactStore = defineStore("contact", {
duration: 0.1,
ease: "none",
},
2.3,
1.3,
)
.call(() => {
this.isIntro = false;
@@ -104,7 +104,7 @@ export const useContactStore = defineStore("contact", {
this.isOutro = false;
const app = useAppStore();
app.navigateTo("home");
}, 2000);
}, 1000);
},
});