diff --git a/web/src/components/player/CurrentSong.vue b/web/src/components/player/CurrentSong.vue
index e367324..0245a9f 100644
--- a/web/src/components/player/CurrentSong.vue
+++ b/web/src/components/player/CurrentSong.vue
@@ -50,7 +50,6 @@
max-height: calc(100% - 9rem);
>img, .fa-solid {
- max-width: 60%;
height: 100%;
font-size: 40vh;
}
diff --git a/web/src/components/shared/InformationPopup.vue b/web/src/components/shared/InformationPopup.vue
new file mode 100644
index 0000000..ffaf2a1
--- /dev/null
+++ b/web/src/components/shared/InformationPopup.vue
@@ -0,0 +1,25 @@
+
+
+
+
+
+ {{ props.title }}
+ {{ props.message }}
+
+
+
+
diff --git a/web/src/components/shared/SettingsPopup.vue b/web/src/components/shared/SettingsPopup.vue
new file mode 100644
index 0000000..e3685c0
--- /dev/null
+++ b/web/src/components/shared/SettingsPopup.vue
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Settings
+
+
+
+
diff --git a/web/src/ts/shared/index.ts b/web/src/ts/shared/index.ts
index 76a6188..a3082c1 100644
--- a/web/src/ts/shared/index.ts
+++ b/web/src/ts/shared/index.ts
@@ -24,7 +24,7 @@ let hasConnected = false;
let retries = 0;
// TODO: Persist settings in local storage
-// TODO: Polling instead of sse
+// TODO: Polling instead of sse as option
const connect = (): Promise => {
return new Promise( ( resolve, reject ) => {