29 lines
460 B
Vue
29 lines
460 B
Vue
<template>
|
|
<!-- <div class="flex col gap-medium">
|
|
<h1 class="main-title">{{ $t("index.title") }}</h1>
|
|
<Button
|
|
:label="$t('index.main_create_journey_button')"
|
|
size="lg"
|
|
color="primary"
|
|
></Button>
|
|
</div> -->
|
|
|
|
<Voyage></Voyage>
|
|
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
const { locales, setLocale } = useI18n();
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
margin: auto;
|
|
display: block;
|
|
}
|
|
</style>
|