WebJamApps/JaMmusic

View on GitHub
src/containers/BuyMusic/BuyLinks/joshShermanSolo.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

function JoshShermanSolo(): JSX.Element {
  return (
    <div className="col">
      <div className="material-content elevation2" style={{ margin: 'auto', maxWidth: '3in', height: '3in' }}>
        <h5 style={{ textAlign: 'center' }}>Solo Acoustic</h5>
        <div style={{ textAlign: 'center' }}>
          <a
            href="https://www.amazon.com/Solo-Acoustic-Explicit-Josh-Sherman/dp/B0013XP8MI/ref=ntt_mus_dp_dpt_2"
            target="_blank"
            rel="noopener noreferrer"
            style={{
              textAlign: 'center',
              display: 'inline-block',
              background: 'url(https://m.media-amazon.com/images/I/81PLWgAmBEL._SS500_.jpg) 18px 2px no-repeat, '
          + 'url(http://content.cdbaby.com/img/links/link-artwork-cart-light-buy-now.png) 0px 0px no-repeat',
              backgroundSize: '175px, 211px',
              height: '233px',
              width: '211px',
            }}
            title="Josh Sherman: Solo Acoustic"
          >
            <span style={{ display: 'none' }}>Buy Solo Acoustic</span>
          </a>
        </div>
      </div>
    </div>
  );
}

export default JoshShermanSolo;