NotFound.vue 439 B

1234567891011121314151617181920
  1. <template>
  2. <div class="theme">
  3. <h1>404</h1>
  4. <blockquote>{{ getMsg() }}</blockquote>
  5. <a :href="$site.base" aria-label="go to home">Take me home.</a>
  6. </div>
  7. </template>
  8. <script setup lang="ts">
  9. const msgs = [
  10. `There's nothing here.`,
  11. `How did we get here?`,
  12. `That's a Four-Oh-Four.`,
  13. `Looks like we've got some broken links.`
  14. ]
  15. function getMsg() {
  16. return msgs[Math.floor(Math.random() * msgs.length)]
  17. }
  18. </script>