404.vue 526 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div>
  3. <main-header />
  4. <div class="wrapper">
  5. <page-metadata title="404" />
  6. <h3><strong>404</strong>&nbsp;Not Found</h3>
  7. <router-link class="button is-dark" to="/">
  8. <i class="material-icons icon-with-button">undo</i>
  9. Back to Home
  10. </router-link>
  11. </div>
  12. <main-footer />
  13. </div>
  14. </template>
  15. <style lang="less" scoped>
  16. .wrapper {
  17. min-height: calc(100vh - 100px);
  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>