About.vue 2.4 KB

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