404.vue 421 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="wrapper">
  3. <metadata title="404" />
  4. <h3><strong>404</strong>&nbsp;Not Found</h3>
  5. <router-link class="button is-black" to="/">
  6. Back to Home
  7. </router-link>
  8. </div>
  9. </template>
  10. <style lang="scss" scoped>
  11. @import "styles/global.scss";
  12. .wrapper {
  13. height: 100vh;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. flex-direction: column;
  18. }
  19. a {
  20. margin-top: 15px;
  21. }
  22. </style>