feat(gallery): transition to and from the nds

This commit is contained in:
2026-01-04 20:53:52 +01:00
parent 1f61eee93a
commit 18f91981ec
13 changed files with 253 additions and 14 deletions

View File

@@ -61,8 +61,13 @@ export const useHomeStore = defineStore("home", {
const timeline = gsap.timeline({
onComplete: () => {
this.isOutro = true;
const app = useAppStore();
app.navigateTo(to);
if (to === "gallery") {
app.navigateTo("gallery");
} else {
app.navigateTo(to);
}
},
});