About.vue 2.3 KB

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