feat(projects): intro and outro animations

This commit is contained in:
2025-12-17 20:06:46 +01:00
parent fbcc7703c9
commit aabe895325
5 changed files with 77 additions and 13 deletions

View File

@@ -8,10 +8,20 @@ onMounted(async () => {
store.$reset();
await store.loadProjects();
});
watch(
() => store.loading,
() => {
if (!store.loading) {
store.animateIntro();
}
},
);
</script>
<template>
<Background />
<Buttons v-if="!store.loading" />
<template v-if="!store.loading">
<Background />
<Buttons />
</template>
</template>