home.vue 893 B

123456789101112131415161718192021222324252627282930
  1. <script>
  2. const { jwt } = require('./security')
  3. export default {
  4. created() {
  5. if (jwt.token) {
  6. this.$router.push('/dashboard')
  7. }
  8. }
  9. }
  10. </script>
  11. <template>
  12. <div>
  13. <div class="hero">
  14. <h1>RSS Archive</h1>
  15. <p>RSS Archive provides an unlimited length RSS feed based on your own existing RSS feed. This blows away 100 / 300 record limit imposed by Squarespace.</p>
  16. <p>Inspired by <a href="https://www.hellointernet.fm">Hello Internet</a>.</p>
  17. </div>
  18. <article>
  19. <h2>How does it work?</h2>
  20. <p>RSS archive subscribes to your RSS feed, and serves a copy of it at a different URL. When one of your older records disappears, it will still be served by RSS Archive. It's that simple.</p>
  21. </article>
  22. <article>
  23. <h2>Getting started</h2>
  24. <p><router-link to="/signup">Sign up!</router-link></p>
  25. </article>
  26. </div>
  27. </template>