mymusics

retro MySpace-style music player
Log | Files | Refs | README

About.tsx (2348B)


      1 import { EmbedSnippet } from "../components/EmbedSnippet";
      2 import { SiteHeader } from "../components/SiteHeader";
      3 import "../App.css";
      4 
      5 export default function About() {
      6   return (
      7     <div className="page page-about">
      8       <SiteHeader nav="about" />
      9 
     10       <main className="main main-about">
     11         <div className="about-shell">
     12           <article className="card about-card">
     13             <h1 className="about-title">About MyMusics</h1>
     14 
     15             <div className="about-prose">
     16               <p>
     17                 MyMusics is a small love letter to a corner of the early web: millions of songs
     18                 lived on MySpace profiles—messy, heartfelt, often buried under glitter and
     19                 autoplay. Many of those tracks survived thanks to archivists and the{" "}
     20                 <strong>Internet Archive</strong>, bundled in collections such as{" "}
     21                 <em>The Myspace Dragon Hoard</em>. This project aggregates metadata for those
     22                 recordings and lets you hit “random” and listen again, streamed from the Archive’s
     23                 mirrors of history rather than from MySpace itself (that ship sailed long ago).
     24               </p>
     25 
     26               <p>
     27                 Years ago I stumbled on another player or demo built around the same idea. I wish I
     28                 could name the author and link to their work; memory failed me, so proper credit
     29                 goes missing here with my apologies. What you see today is not a fork: the stack,
     30                 server, UX, and plenty of behaviour were reworked from scratch. I changed a lot,
     31                 learned a lot, and I’m genuinely happy with how it turned out.
     32               </p>
     33 
     34               <p>
     35                 The old internet was slower, louder, and less polished—but it felt owned by people.
     36                 Bands shouted into the void with orange backgrounds; friends traded playlists in
     37                 comments; nothing asked you for a subscription before it would play a song. If
     38                 this player reminds you of that era for even a minute, it did its job.
     39               </p>
     40             </div>
     41           </article>
     42         </div>
     43       </main>
     44 
     45       <EmbedSnippet />
     46 
     47       <footer className="footer">
     48         <small className="muted">Developed by Pablo Murad — 2026</small>
     49       </footer>
     50     </div>
     51   );
     52 }