Skip to content

Commit

Permalink
Merge pull request #13 from oogunjob/fixing-images-not-appearing
Browse files Browse the repository at this point in the history
Fixing Images Not Appearing
  • Loading branch information
oogunjob committed Jan 27, 2024
2 parents 5a84348 + 7e075e2 commit 518447c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/components/buttons/providerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function ProviderCard({
}}
>
<div className="h-[142px] w-[134px]">
<img src={`/icons/${provider.icon}`} alt="My Image" />
<img src={`./icons/${provider.icon}`} alt={provider.name} />
</div>
<span className="text-lg">{provider.name}</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function Footer() {
<div className="flex justify-evenly space-x-10 mt-4 text-lg text-gray-600">
<div>
<a href="https://github.com/oogunjob/Universal-Music-Library-Transfer" target="_blank" className="flex items-center space-x-2">
<img src="/icons/github-mark.svg" alt="Github Icon" className="w-6 h-6" />
<img src="./icons/github-mark.svg" alt="Github Icon" className="w-6 h-6" />
<span>GitHub</span>
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/playlists.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function Playlists({
>
<div onClick={() => handleToggleOption(playlist)} className={`flex flex-col items-center justify-center cursor-pointer `}>
<div className={`flex items-center justify-center w-20 h-20 bg-white rounded-[10px] shadow`}>
<img src={`/icons/playlist_icon.svg`} alt={playlist.name} />
<img src={`./icons/playlist_icon.svg`} alt={playlist.name} />
</div>
<div className="flex items-center justify-center">
<label
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/transfer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function Transfer({ source, destination, playlists }: { source: BaseProvider; de
<div key={index} className="flex justify-center mx-3">
<div className="w-[315px] h-20 flex items-center font-normal bg-white rounded-[10px] shadow mr-5 mb-5 overflow-hidden overflow-ellipsis whitespace-nowrap">
<div className="mx-2 ">
<img src={`/icons/playlist_icon.svg`} alt={playlist.name} />
<img src={`./icons/playlist_icon.svg`} alt={playlist.name} />
</div>
{source.GetPlaylistName(playlist)}
</div>
Expand Down

0 comments on commit 518447c

Please sign in to comment.