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.

116 lines
4.3 KiB

  1. <template>
  2. <v-content>
  3. <section>
  4. <v-parallax src="/images/hero.jpeg" height="600">
  5. <v-layout
  6. column
  7. align-center
  8. justify-center
  9. class="white--text"
  10. >
  11. <img src="/images/vuetify.png" alt="Vuetify.js" height="200">
  12. <h1 class="white--text mb-2 display-1 text-xs-center">
  13. Text Annotation for Human
  14. </h1>
  15. <div class="subheading mb-3 text-xs-center">
  16. Just create project, upload data and start annotation. You can build dataset in hours.
  17. </div>
  18. <v-btn
  19. class="blue lighten-2 mt-5"
  20. dark
  21. large
  22. href="/pre-made-themes"
  23. >
  24. Get Started
  25. </v-btn>
  26. </v-layout>
  27. </v-parallax>
  28. </section>
  29. <section>
  30. <v-layout
  31. column
  32. wrap
  33. class="my-5"
  34. align-center
  35. >
  36. <v-flex xs12 sm4 class="my-3">
  37. <div class="text-xs-center">
  38. <h2 class="headline">
  39. The best features
  40. </h2>
  41. </div>
  42. </v-flex>
  43. <v-flex xs12>
  44. <v-container grid-list-xl>
  45. <v-layout row wrap align-center>
  46. <v-flex xs12 md4>
  47. <v-card class="elevation-0 transparent">
  48. <v-card-text class="text-xs-center">
  49. <v-icon x-large class="blue--text text--lighten-2">
  50. color_lens
  51. </v-icon>
  52. </v-card-text>
  53. <v-card-title primary-title class="layout justify-center">
  54. <div class="headline text-xs-center">
  55. Team Collaboration
  56. </div>
  57. </v-card-title>
  58. <v-card-text class="subheading">
  59. Cras facilisis mi vitae nunc lobortis pharetra. Nulla volutpat tincidunt ornare.
  60. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
  61. Nullam in aliquet odio. Aliquam eu est vitae tellus bibendum tincidunt. Suspendisse potenti.
  62. </v-card-text>
  63. </v-card>
  64. </v-flex>
  65. <v-flex xs12 md4>
  66. <v-card class="elevation-0 transparent">
  67. <v-card-text class="text-xs-center">
  68. <v-icon x-large class="blue--text text--lighten-2">
  69. flash_on
  70. </v-icon>
  71. </v-card-text>
  72. <v-card-title primary-title class="layout justify-center">
  73. <div class="headline">
  74. Multi Language
  75. </div>
  76. </v-card-title>
  77. <v-card-text class="subheading">
  78. Cras facilisis mi vitae nunc lobortis pharetra. Nulla volutpat tincidunt ornare.
  79. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
  80. Nullam in aliquet odio. Aliquam eu est vitae tellus bibendum tincidunt. Suspendisse potenti.
  81. </v-card-text>
  82. </v-card>
  83. </v-flex>
  84. <v-flex xs12 md4>
  85. <v-card class="elevation-0 transparent">
  86. <v-card-text class="text-xs-center">
  87. <v-icon x-large class="blue--text text--lighten-2">
  88. build
  89. </v-icon>
  90. </v-card-text>
  91. <v-card-title primary-title class="layout justify-center">
  92. <div class="headline text-xs-center">
  93. Completely Open Sourced
  94. </div>
  95. </v-card-title>
  96. <v-card-text class="subheading">
  97. Cras facilisis mi vitae nunc lobortis pharetra. Nulla volutpat tincidunt ornare.
  98. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
  99. Nullam in aliquet odio. Aliquam eu est vitae tellus bibendum tincidunt. Suspendisse potenti.
  100. </v-card-text>
  101. </v-card>
  102. </v-flex>
  103. </v-layout>
  104. </v-container>
  105. </v-flex>
  106. </v-layout>
  107. </section>
  108. </v-content>
  109. </template>
  110. <script>
  111. export default {
  112. components: {
  113. }
  114. }
  115. </script>