mymusics

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

PlayerAttribution.tsx (435B)


      1 export function PlayerAttribution({ compact = false }: { compact?: boolean }) {
      2   return (
      3     <p className={`player-attribution${compact ? " player-attribution--compact" : ""}`}>
      4       Audio from{" "}
      5       <a
      6         href="https://archive.org/details/myspace_dragon_hoard_2010"
      7         target="_blank"
      8         rel="noopener noreferrer"
      9       >
     10         Internet Archive — The Myspace Dragon Hoard
     11       </a>
     12       .
     13     </p>
     14   );
     15 }