You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: application/src/app/components/about/about.component.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
<app-navbar></app-navbar>
3
3
<h1class="sec-title">About</h1>
4
4
<p>How well do you know your favourite songs? The answer varies depending on who you ask. One of my favourite songs is Careless Whisper by George Michael. Interestingly, all most people needed was the first two seconds of the opening drum riff to recognise Careless Whisper. That was the main inspiration behind Whisperify. </p>
5
-
<p>Whisperify is an interactive way to learn about your favourite songs on Spotify. It chooses 10 songs from your top tracks or a playlist on Spotify, and plays you 5-second snippets, or 'whispers', of each song. You get time to guess the song and scored on your speed and accuracy. You can create and share quizzes with friends</p>
5
+
<p>Whisperify is an interactive way to learn about your favourite songs on Spotify. It is a Spotify quiz that chooses 10 songs from your top tracks or a playlist, and plays you 5-second snippets, or 'whispers', of each song. You get time to guess the song and scored on your speed and accuracy. You can create and share quizzes with friends</p>
6
6
<p>In addition to that, Whisperify provides detailed stats on the audio features of your favourite songs, and how your listening habits compare to your favourite albums, your friends, listeners with specific personalities, and listeners from all around the world. </p>
7
7
<p>There is something about song identification that makes an interesting pasttime and my friends have always enjoyed quizzing each other on our music. This pushed me to figure out the ideal length of a song snippet that would allow you to identify a song, and how to get a metric for performance. </p>
8
8
<p>If you enjoyed this application, consider ✨ <aclass="p-url" href="https://github.com/eightants/whisperify" target="_blank" rel="noopener noreferrer">giving a star on Github</a> or ☕ <aclass="p-url" href="https://ko-fi.com/eightants" target="_blank" rel="noopener noreferrer">buying me a coffee</a>. </p>
this.titleTagService.setTitle('Whisperify - Spotify Quiz and Music Analysis');
16
17
this.titleTagService.setSocialMediaTags(
17
18
'Whisperify - Spotify Quiz and Music Analysis',
18
19
"An interactive way to learn about your favourite songs on Spotify. View stats, quiz yourself on your favourite playlists, and share quizzes with friends. "
19
20
);
20
-
// sets some session variables to null, which logs the user out
21
-
sessionStorage.setItem("currentLink","");
22
-
sessionStorage.setItem("token","");
23
-
sessionStorage.setItem("username","");
24
-
sessionStorage.setItem("displayName","");
21
+
if(isPlatformBrowser(this.platformId)){
22
+
// sets some session variables to null, which logs the user out
0 commit comments