404.vue 638 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div>
  3. <div class="wrapper">
  4. <page-metadata title="404" />
  5. <h3><strong>404</strong>&nbsp;Not Found</h3>
  6. <router-link class="button is-dark" to="/">
  7. <i class="material-icons icon-with-button">undo</i>
  8. Back to Home
  9. </router-link>
  10. </div>
  11. <main-footer />
  12. </div>
  13. </template>
  14. <script>
  15. import MainFooter from "@/components/layout/MainFooter.vue";
  16. export default {
  17. components: { MainFooter }
  18. };
  19. </script>
  20. <style lang="scss" scoped>
  21. .wrapper {
  22. min-height: calc(100vh - 100px);
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. flex-direction: column;
  27. }
  28. a {
  29. margin-top: 15px;
  30. }
  31. </style>