About.vue 2.3 KB

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