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.

46 lines
1.1 KiB

  1. <template>
  2. <section>
  3. <v-parallax
  4. :src="require(`~/assets/vbanner.jpg`)"
  5. height="400"
  6. dark
  7. >
  8. <v-layout
  9. wrap
  10. align-center
  11. justify-center
  12. class="white--text"
  13. >
  14. <v-flex text-right class="mr-5">
  15. <img src="~/assets/icon.png" alt="doccano" height="200">
  16. </v-flex>
  17. <v-flex>
  18. <h1 class="mb-2 display-1 text-xs-center">
  19. {{ $t('home.mainTitle') }}
  20. </h1>
  21. <div class="mt-4">
  22. <v-btn
  23. large
  24. outlined
  25. color="white"
  26. href="https://github.com/doccano/doccano"
  27. >
  28. <v-icon left>
  29. mdi-github
  30. </v-icon>
  31. GitHub
  32. </v-btn>
  33. <v-btn
  34. class="blue lighten-2 ml-5"
  35. dark
  36. large
  37. :href="localePath('/auth')"
  38. >
  39. {{ $t('home.getStarted') }}
  40. </v-btn>
  41. </div>
  42. </v-flex>
  43. </v-layout>
  44. </v-parallax>
  45. </section>
  46. </template>