404.vue 843 Bytes
<template>
  <div class="error-container">
    <h1>404</h1>
    <p>
      <strong>File not found</strong>
    </p>
    <p>The site configured at this address does not contain the requested file.</p>
    <p>
      <router-link to="/" class="back-link">Back to Home</router-link>
    </p>
  </div>
</template>

<script>
export default {

}
</script>

<style scoped>
  .error-container {
    margin: 50px auto 40px auto;
    width: 600px;
    text-align: center;
  }

  h1 {
    width: 800px;
    position: relative;
    left: -100px;
    letter-spacing: -1px;
    line-height: 60px;
    font-size: 60px;
    font-weight: 100;
    margin: 0 0 50px 0;
    text-shadow: 0 1px 0 #fff;
  }

  p {
    color: rgba(0, 0, 0, 0.5);
    margin: 20px 0;
    line-height: 1.6;
  }

  .back-link {
    color: #3BB8FF;
    text-decoration: none;
  }
</style>