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.

25 lines
383 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. </script>
  12. <style scoped>
  13. html {
  14. background-color: black;
  15. }
  16. .empty-page {
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. justify-content: center;
  21. }
  22. </style>