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.

35 lines
870 B

  1. <template lang='pug'>
  2. v-app
  3. .onboarding
  4. .onboarding-content
  5. img.animated.fadeIn(src='/_assets/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. div
  9. v-btn.mt-5.mx-3.animated.fadeInUp.wait-p2s(color='primary', :href='`/e/` + locale + `/home`', x-large)
  10. v-icon(left) mdi-plus
  11. span {{ $t('welcome.createhome') }}
  12. v-btn.mt-5.mx-3.animated.fadeInUp.wait-p3s(color='primary', href='/a', x-large)
  13. v-icon(left) mdi-view-dashboard
  14. span {{ $t('welcome.goadmin') }}
  15. </template>
  16. <script>
  17. export default {
  18. props: {
  19. locale: {
  20. type: String,
  21. default: 'en'
  22. }
  23. },
  24. data() {
  25. return { }
  26. }
  27. }
  28. </script>
  29. <style lang='scss'>
  30. </style>