You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
659 B

  1. <template lang='pug'>
  2. v-app
  3. .onboarding
  4. .onboarding-content
  5. img.animated.fadeIn(src='/svg/logo-wikijs.svg', alt='Wiki.js')
  6. .headline.animated.fadeInUp {{ $t('welcome.title') }}
  7. .subtitle-1.mt-3.animated.fadeInUp.wait-p1s {{ $t('welcome.subtitle') }}
  8. v-btn.mt-5.animated.fadeInUp.wait-p2s(color='primary', :href='`/e/` + locale + `/home`', x-large)
  9. v-icon(left) mdi-plus
  10. span {{ $t('welcome.createhome') }}
  11. </template>
  12. <script>
  13. export default {
  14. props: {
  15. locale: {
  16. type: String,
  17. default: 'en'
  18. }
  19. },
  20. data() {
  21. return { }
  22. }
  23. }
  24. </script>
  25. <style lang='scss'>
  26. </style>