welcome.vue 667 Bytes
Newer Older
1 2 3 4
<template lang='pug'>
  v-app
    .onboarding
      .onboarding-content
NGPixel's avatar
NGPixel committed
5
        img.animated.fadeIn(src='/_assets/svg/logo-wikijs.svg', alt='Wiki.js')
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
        .headline.animated.fadeInUp {{ $t('welcome.title') }}
        .subtitle-1.mt-3.animated.fadeInUp.wait-p1s {{ $t('welcome.subtitle') }}
        v-btn.mt-5.animated.fadeInUp.wait-p2s(color='primary', :href='`/e/` + locale + `/home`', x-large)
          v-icon(left) mdi-plus
          span {{ $t('welcome.createhome') }}
</template>

<script>

export default {
  props: {
    locale: {
      type: String,
      default: 'en'
    }
  },
  data() {
    return { }
  }
}
</script>

<style lang='scss'>

</style>