h4 commited on
Commit
7ca3d7d
·
verified ·
1 Parent(s): 983d306

Upload menu.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. menu.html +51 -0
menu.html ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html><head>
3
+ <meta charset="utf-8">
4
+ <title>retro-sync — Music NFT Collections</title>
5
+ <style>
6
+ body{background:#0a0a0a;color:#e0e0e0;font-family:monospace;max-width:800px;margin:0 auto;padding:2em}
7
+ h1{color:#0ff;font-size:1.5em}
8
+ .grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px;margin:1em 0}
9
+ .card{background:#111;border:1px solid #333;padding:16px;border-radius:8px;cursor:pointer;transition:border-color 0.2s}
10
+ .card:hover{border-color:#0ff}
11
+ .card h3{color:#ffd700;margin:0 0 4px;font-size:1em}
12
+ .card .meta{color:#888;font-size:0.8em}
13
+ .card .count{color:#0f0;font-size:0.9em;margin-top:8px}
14
+ a{color:#0ff;text-decoration:none}
15
+ .footer{margin-top:2em;color:#555;font-size:0.8em;border-top:1px solid #222;padding-top:1em}
16
+ </style>
17
+ </head><body>
18
+ <h1>🎵 retro-sync — Music NFT Collections</h1>
19
+ <p>Public domain music encoded in steganographic PNG tiles. Click to decode and play.</p>
20
+
21
+ <div class="grid" id="collections"></div>
22
+
23
+ <div class="footer">
24
+ retro-sync · DA51 CBOR · Cl(15,0,0) · 6-layer stego<br>
25
+ <a href="https://github.com/meta-introspector/retro-sync">GitHub</a> ·
26
+ <a href="https://huggingface.co/spaces/introspector/retro-sync">HuggingFace</a>
27
+ </div>
28
+
29
+ <script>
30
+ const collections = [
31
+ {name:"Bach Inventions", slug:"bach-invention", pieces:15, era:"Baroque 1720", desc:"Two-Part Inventions BWV 772-786"},
32
+ {name:"Bartók", slug:"bartok", pieces:20, era:"Modern 1908", desc:"Children's pieces, folk songs, Mikrokosmos"},
33
+ // Add more as onboarded:
34
+ // {name:"Joplin Ragtime", slug:"joplin", pieces:12, era:"1899", desc:"Maple Leaf Rag, The Entertainer"},
35
+ // {name:"Satie", slug:"satie", pieces:15, era:"1888", desc:"Gymnopédies, Gnossiennes"},
36
+ // {name:"Debussy", slug:"debussy", pieces:15, era:"1890", desc:"Clair de Lune, Arabesques"},
37
+ ];
38
+
39
+ const grid = document.getElementById('collections');
40
+ for (const c of collections) {
41
+ const base = window.location.pathname.replace(/\/[^/]*$/, '');
42
+ grid.innerHTML += `
43
+ <a href="${base}/${c.slug}/" class="card">
44
+ <h3>${c.name}</h3>
45
+ <div class="meta">${c.era}</div>
46
+ <div class="meta">${c.desc}</div>
47
+ <div class="count">🎵 ${c.pieces} pieces · 71 tiles</div>
48
+ </a>`;
49
+ }
50
+ </script>
51
+ </body></html>