About.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <div class='app'>
  3. <main-header></main-header>
  4. <div class='container'>
  5. <div class='card is-fullwidth'>
  6. <header class='card-header'>
  7. <p class='card-header-title'>
  8. The project
  9. </p>
  10. </header>
  11. <div class='card-content'>
  12. <div class='content'>
  13. <p>
  14. Musare is an open-source music website where you can listen to real-time genre specific music stations, or join community stations created by users.
  15. </p>
  16. </div>
  17. </div>
  18. </div>
  19. <div class='card is-fullwidth'>
  20. <header class='card-header'>
  21. <p class='card-header-title'>
  22. How you can help
  23. </p>
  24. </header>
  25. <div class='card-content'>
  26. <div class='content'>
  27. <p>
  28. There are multiple ways you can help us:
  29. <ol>
  30. <li>
  31. Reporting bugs. No website is perfect, but we try to eliminate as many bugs as possible.
  32. If you find a bug, we would highly appreciate it if you could create an issue on the GitHub project with steps to reproduce the issue, so we can fix it as soon as possible.
  33. </li>
  34. <li>
  35. Sending us feedback. Your comments and/or suggestions are extremely valuable to us. In order to improve
  36. we need to know what you like, don't like and what you might want on the website.
  37. </li>
  38. <li>
  39. Sharing the joy. The more people enjoying Musare, the better.
  40. Telling your friends or relatives about Musare would increase the amount of users we have, which would motivate us and cause Musare to grow faster.
  41. </li>
  42. </ol>
  43. </p>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. <main-footer></main-footer>
  49. </div>
  50. </template>
  51. <script>
  52. import MainHeader from '../MainHeader.vue';
  53. import MainFooter from '../MainFooter.vue';
  54. import io from '../../io';
  55. export default {
  56. components: { MainHeader, MainFooter },
  57. methods: {
  58. },
  59. data() {
  60. return {
  61. }
  62. },
  63. ready: function () {
  64. }
  65. }
  66. </script>
  67. <style lang='scss' scoped>
  68. .card { margin-top: 50px; }
  69. </style>