Initial commit

This commit is contained in:
T-A-H-prog
2026-03-04 22:05:06 +01:00
commit 8bbf7a4c2b
42 changed files with 2864 additions and 0 deletions

18
src/views/HomeView.vue Normal file
View File

@@ -0,0 +1,18 @@
<script setup lang="ts">
import HeroSection from '../components/sections/HeroSection.vue'
import ImageSection from '../components/sections/ImageSection.vue'
import TextSection from '../components/sections/TextSection.vue'
import { useActiveSection } from '../composables/useScrollAnimations'
const { currentSection } = useActiveSection(['hero', 'image', 'text'])
</script>
<template>
<HeroSection id="hero" />
<ImageSection id="image" />
<TextSection id="text" />
<div class="indicator">
Aktuelle Section: {{ currentSection }}
</div>
</template>