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.

172 lines
4.7 KiB

  1. <template>
  2. <v-content>
  3. <section>
  4. <v-parallax
  5. src="/images/vbanner.jpg"
  6. height="400"
  7. dark
  8. >
  9. <v-layout
  10. wrap
  11. align-center
  12. justify-center
  13. class="white--text"
  14. >
  15. <v-flex text-right class="mr-5">
  16. <img src="~/assets/icon.png" alt="doccano" height="200">
  17. </v-flex>
  18. <v-flex>
  19. <h1 class="mb-2 display-1 text-xs-center">
  20. Text Annotation for Human
  21. </h1>
  22. <div class="mt-4">
  23. <v-btn
  24. large
  25. outlined
  26. color="white"
  27. href="https://github.com/chakki-works/doccano"
  28. >
  29. <v-icon left>
  30. mdi-github-circle
  31. </v-icon>
  32. GitHub
  33. </v-btn>
  34. <v-btn
  35. class="blue lighten-2 ml-5"
  36. dark
  37. large
  38. href="/auth"
  39. >
  40. Get Started
  41. </v-btn>
  42. </div>
  43. </v-flex>
  44. </v-layout>
  45. </v-parallax>
  46. </section>
  47. <v-container>
  48. <v-layout
  49. column
  50. wrap
  51. class="my-5"
  52. align-center
  53. >
  54. <v-flex xs12 sm4 class="my-3">
  55. <div class="text-xs-center">
  56. <h2 class="headline">
  57. The best features
  58. </h2>
  59. </div>
  60. </v-flex>
  61. <v-flex xs12>
  62. <v-container grid-list-xl>
  63. <v-layout wrap align-center>
  64. <v-flex xs12 md4>
  65. <v-card>
  66. <v-img
  67. src="/images/feature3.png"
  68. height="200px"
  69. />
  70. <v-card-title primary-title class="layout justify-center">
  71. <div class="headline text-xs-center font-weight-bold mb-2">
  72. Team Collaboration
  73. </div>
  74. </v-card-title>
  75. <v-card-text class="subtitle-1 layout justify-center">
  76. Annotation with your team mates.
  77. </v-card-text>
  78. </v-card>
  79. </v-flex>
  80. <v-flex xs12 md4>
  81. <v-card>
  82. <v-img
  83. src="/images/feature2.png"
  84. height="200px"
  85. />
  86. <v-card-title primary-title class="layout justify-center">
  87. <div class="headline text-xs-center font-weight-bold mb-2">
  88. Any Language
  89. </div>
  90. </v-card-title>
  91. <v-card-text class="subtitle-1 layout justify-center">
  92. Annotation with any language.
  93. </v-card-text>
  94. </v-card>
  95. </v-flex>
  96. <v-flex xs12 md4>
  97. <v-card>
  98. <v-img
  99. src="/images/feature1.png"
  100. height="200px"
  101. />
  102. <v-card-title primary-title class="layout justify-center">
  103. <div class="headline text-xs-center font-weight-bold mb-2">
  104. Open Source
  105. </div>
  106. </v-card-title>
  107. <v-card-text class="subtitle-1 layout justify-center">
  108. Annotation with free and customizable.
  109. </v-card-text>
  110. </v-card>
  111. </v-flex>
  112. </v-layout>
  113. </v-container>
  114. </v-flex>
  115. </v-layout>
  116. </v-container>
  117. <section>
  118. <v-parallax
  119. src="/images/vbanner.jpg"
  120. height="400"
  121. dark
  122. >
  123. <v-container>
  124. <v-layout
  125. wrap
  126. align-center
  127. justify-center
  128. class="white--text"
  129. >
  130. <v-flex
  131. xs12
  132. md7
  133. >
  134. <v-img
  135. src="http://doccano.herokuapp.com/static/images/named_entity_recognition.6fb82064e7aa.png"
  136. max-height="380"
  137. contain
  138. class="ma-5"
  139. />
  140. </v-flex>
  141. <v-flex
  142. xs12
  143. md5
  144. >
  145. <h1 class="mb-2 display-1 text-xs-center">
  146. Realize your ideas quickly
  147. </h1>
  148. <div class="mt-4">
  149. <v-btn
  150. class="blue lighten-2"
  151. dark
  152. large
  153. href="/demo"
  154. >
  155. Try demo
  156. </v-btn>
  157. </div>
  158. </v-flex>
  159. </v-layout>
  160. </v-container>
  161. </v-parallax>
  162. </section>
  163. </v-content>
  164. </template>
  165. <script>
  166. export default {
  167. components: {
  168. }
  169. }
  170. </script>