Skip to content

Commit 31e20e2

Browse files
committed
Replace .ico browser tab icon
1 parent 1c7f30d commit 31e20e2

File tree

6 files changed

+3
-3329
lines changed

6 files changed

+3
-3329
lines changed

public/favicon.ico

65.6 KB
Binary file not shown.

src/components/ArtistInfo/ArtistInfo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useSelector, useDispatch } from 'react-redux';
33
import { info } from '../../actions';
44
import apiCalls from '../../utilities/apiCalls';
55
import utils from '../../utilities/utils';
6-
import concert from '../../assets/images/artists/concert-stock-photo.jpeg';
6+
import concert from '../../assets/images/concert-stock-photo.jpeg';
77

88
const ArtistInfo = ({ id }) => {
99

src/components/TopArtists/TopArtists.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ const TopArtists = () => {
5252

5353
return (
5454
<article id={artist.mbid} key={artist.mbid} className='top-artist-card'>
55-
<p>{artist.name}</p>
55+
<p className='top-artist-name'>{artist.name}</p>
5656
<Link to={`/artist:${nameString}`} id={nameString} className='link-container'>
57-
<img src='' alt='artist-portrait'></img>
57+
<img src='' alt='top artist'></img>
5858
</Link>
5959
</article>
6060
)

0 commit comments

Comments
 (0)