404.vue 729 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. <script>
  16. import MainHeader from "@/components/layout/MainHeader.vue";
  17. import MainFooter from "@/components/layout/MainFooter.vue";
  18. export default {
  19. components: { MainHeader, MainFooter }
  20. };
  21. </script>
  22. <style lang="scss" scoped>
  23. .wrapper {
  24. min-height: calc(100vh - 100px);
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. flex-direction: column;
  29. }
  30. a {
  31. margin-top: 15px;
  32. }
  33. </style>