index.vue 295 B

12345678910
  1. <template>
  2. <div class="min-h-screen flex flex-col relative w-full">
  3. <HomeNav />
  4. <ParallaxBackground />
  5. </div>
  6. </template>
  7. <script setup lang="ts">
  8. import HomeNav from './components/nav.vue';
  9. import ParallaxBackground from './components/parallaxBackground.vue';
  10. </script>