Skip to content

Commit

Permalink
adds amazon music podcast link
Browse files Browse the repository at this point in the history
  • Loading branch information
wesbos committed Nov 30, 2023
1 parent 92a64e4 commit 48e61e5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ export const PODCAST_LINKS = [
{
href: 'https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkLnN5bnRheC5mbS9yc3M%3D',
text: 'Google Podcasts'
},
{
href: 'https://music.amazon.com/podcasts/3f16a46b-6281-4fc7-99de-380fbeb6d970/syntax---tasty-web-development-treats',
text: 'Amazon Music'
}
];

Expand Down
6 changes: 6 additions & 0 deletions src/lib/PodcastLinks.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,15 @@
.subscribe--google-podcasts {
--button-bg: linear-gradient(to bottom, rgb(245, 121, 23) 0%, rgb(254, 185, 90) 100%);
}
.subscribe--amazon-music {
--button-bg: linear-gradient(to bottom, #25d1da 0%, #399a9e 100%);
}
.subscribe--google-podcasts::before {
background-image: url('/icons/google_podcasts.svg');
}
.subscribe--amazon-music::before {
background-image: url('/icons/amznMusic.png');
}
a {
font-size: var(--font-size-xs);
}
Expand Down
Binary file added static/icons/amznMusic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 48e61e5

Please sign in to comment.