You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
442 B

  1. <template>
  2. <main class="empty-page white-bkg">
  3. <NuxtLogo />
  4. <NuxtLink to="/go" class="btn btn--primary">
  5. go to the site
  6. </NuxtLink>
  7. </main>
  8. </template>
  9. <script>
  10. export default {
  11. loading: {
  12. color: '#007fff',
  13. height: '1rem'
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. html {
  19. background-color: black;
  20. }
  21. .empty-page {
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. </style>