summaryrefslogtreecommitdiff
path: root/src/desktop/apps/music.tsx
diff options
context:
space:
mode:
authordarkuss <darkussdelta@gmail.com>2026-08-22 01:58:37 +0200
committerdarkuss <darkussdelta@gmail.com>2026-08-22 01:58:37 +0200
commit8f32fd58cafe677c07d9ed9fff84f6e255156d37 (patch)
treea5de06ffb2c0a8b878c8a563ec8cee692efc98ac /src/desktop/apps/music.tsx
parent5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c (diff)
holy shit i'm finally done
Diffstat (limited to 'src/desktop/apps/music.tsx')
-rw-r--r--src/desktop/apps/music.tsx43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/desktop/apps/music.tsx b/src/desktop/apps/music.tsx
deleted file mode 100644
index b5646bd..0000000
--- a/src/desktop/apps/music.tsx
+++ /dev/null
@@ -1,43 +0,0 @@
-// type Song = {
-// name: string,
-// url: string,
-// length: number,
-//
-// bc_exclusive: boolean
-// }
-//
-// const SONGS: = [
-// [],
-// [],
-// [],
-// [],
-// [],
-// [],
-// [],
-// [],
-// [],
-// [],
-// []
-// ]
-//
-// function Song() {
-//
-// }
-
-import { useState } from "preact/hooks"
-
-export function Music() {
- const [userApproves, setUserApproves] = useState(false);
-
- if (userApproves) {
- return <iframe style="border: 0; width: 350px; height: 500px;" src="https://bandcamp.com/EmbeddedPlayer/album=3374731395/size=large/bgcol=000000/linkcol=ff0047/transparent=true/" seamless><a href="https://sunnexo.bandcamp.com/album/netpunk">Netpunk by Sunnexo</a></iframe>
- } else {
- return <div class="external_warning">
- <div>Click here to load player from <a href="https://bandcamp.com">https://bandcamp.com</a></div>
- <button onClick={() => setUserApproves(true)}>
- Load player
- </button>
- </div>
- }
-}
-