some marketing changes

This commit is contained in:
2024-08-02 11:19:41 +02:00
parent d7f36b8e07
commit a2711b76dd
2 changed files with 9 additions and 12 deletions

View File

@@ -10,7 +10,7 @@
import { defineStore } from 'pinia'; import { defineStore } from 'pinia';
export const useUserStore = defineStore( 'user', { export const useUserStore = defineStore( 'user', {
state: () => ( { 'isUserAuth': false, 'hasSubscribed': false, 'isUsingKeyboard': false, 'username': '' } ), state: () => ( { 'isUserAuth': false, 'hasSubscribed': false, 'isUsingKeyboard': false, 'username': '', 'isFOSSVersion': false } ),
getters: { getters: {
getUserAuthenticated: ( state ) => state.isUserAuth, getUserAuthenticated: ( state ) => state.isUserAuth,
getSubscriptionStatus: ( state ) => state.hasSubscribed, getSubscriptionStatus: ( state ) => state.hasSubscribed,

View File

@@ -11,21 +11,18 @@
<a href="https://github.com/simplePCBuilding/MusicPlayerV2" class="fancy-button" style="margin-left: 10px;" target="_blank">GitHub</a> <a href="https://github.com/simplePCBuilding/MusicPlayerV2" class="fancy-button" style="margin-left: 10px;" target="_blank">GitHub</a>
</div> </div>
</div> </div>
<div class="full-height"> <div>
<h2>Fully featured Music Player</h2> <h2>Fully featured Music Player</h2>
<img src="https://github.com/simplePCBuilding/MusicPlayerV2/raw/master/assets/logo.png" alt="MusicPlayer Logo" class="promo-img"> <p>All the features you'd expect a Music Player to have are also present here</p>
</div>
<div class="full-height">
<h2>Apple Music integration</h2> <h2>Apple Music integration</h2>
<img src="https://github.com/simplePCBuilding/MusicPlayerV2/raw/master/assets/logo.png" alt="MusicPlayer Logo" class="promo-img"> <p>Use MusicPlayer in conjunction with Apple Music</p>
</div>
<div class="full-height">
<h2>Share your playlist</h2> <h2>Share your playlist</h2>
<img src="https://github.com/simplePCBuilding/MusicPlayerV2/raw/master/assets/logo.png" alt="MusicPlayer Logo" class="promo-img"> <p>You can share your playlist on a beautifully animated public page, so that other people can join in and view your playlist</p>
</div>
<div class="full-height">
<h2>Fully browser based</h2> <h2>Fully browser based</h2>
<img src="https://github.com/simplePCBuilding/MusicPlayerV2/raw/master/assets/logo.png" alt="MusicPlayer Logo" class="promo-img"> <p>No installation required when using MusicPlayer on <a href="https://music.janishutz.com">music.janishutz.com</a></p>
</div> </div>
</div> </div>
</template> </template>