15 lines
263 B
Vue
Raw Normal View History

2023-04-25 13:24:22 +02:00
<script setup lang="ts">
2023-05-24 17:33:23 +02:00
import CoverSection from "./components/CoverSection.vue";
2023-06-02 15:21:36 +02:00
import FirstSprint from "./components/FirstSprint.vue";
2023-04-25 13:24:22 +02:00
</script>
<template>
<main>
2023-06-02 15:21:36 +02:00
<FirstSprint />
2023-05-31 16:58:29 +02:00
<CoverSection />
2023-04-25 13:24:22 +02:00
</main>
</template>
<style lang="scss">
</style>