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.

53 lines
917 B

  1. <template>
  2. <v-app>
  3. <v-app-bar
  4. app
  5. color=""
  6. >
  7. <nuxt-link to="/" style="line-height:0;">
  8. <img src="~/assets/icon.png" height="48">
  9. </nuxt-link>
  10. <v-toolbar-title class="align-center ml-2">
  11. doccano
  12. </v-toolbar-title>
  13. <div class="flex-grow-1" />
  14. <v-btn
  15. outlined
  16. href="auth"
  17. >
  18. Sign in
  19. </v-btn>
  20. </v-app-bar>
  21. <nuxt />
  22. <v-footer
  23. color="primary lighten-1"
  24. padless
  25. >
  26. <v-layout
  27. justify-center
  28. wrap
  29. >
  30. <v-flex
  31. black
  32. lighten-2
  33. py-4
  34. text-center
  35. white--text
  36. xs12
  37. >
  38. &copy; {{ new Date().getFullYear() }} doccano
  39. </v-flex>
  40. </v-layout>
  41. </v-footer>
  42. </v-app>
  43. </template>
  44. <script>
  45. export default {}
  46. </script>
  47. <style scoped>
  48. .top{
  49. text-decoration: none;
  50. }
  51. </style>