feat(intro): implement intro screen

This commit is contained in:
2026-01-12 16:13:01 +01:00
parent 3ecd2a9019
commit 130bafa7dc
48 changed files with 218 additions and 5 deletions

View File

@@ -20,14 +20,11 @@ export const useHomeStore = defineStore("home", {
actions: {
animateIntro() {
const appStore = useAppStore();
this.isIntro = true;
const timeline = gsap.timeline({
onComplete: () => {
this.isIntro = false;
if (!appStore.booted) appStore.booted = true;
},
});