404.vue 416 B

123456789101112131415161718192021222324
  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="/"> Back to Home </router-link>
  6. </div>
  7. </template>
  8. <style lang="scss" scoped>
  9. @import "styles/global.scss";
  10. .wrapper {
  11. height: 100vh;
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. flex-direction: column;
  16. }
  17. a {
  18. margin-top: 15px;
  19. }
  20. </style>