404.vue 453 B

12345678910111213141516171819202122232425262728293031
  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. * {
  13. margin: 0;
  14. padding: 0;
  15. }
  16. .wrapper {
  17. height: 100vh;
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. flex-direction: column;
  22. }
  23. a {
  24. margin-top: 15px;
  25. }
  26. </style>