404.vue 425 B

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