About.vue 2.1 KB

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