diff --git a/README.md b/README.md index 3fb28f4..adf428b 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,7 @@ services: - BUYMEACOFFEE=https://www.buymeacoffee.com/ - GITLAB=https://www.gitlab.com/ - PATREON=https://www.patreon.com/technotim + - DEVTO=https://dev.to/ ports: - 8080:3000 restart: unless-stopped @@ -154,7 +155,7 @@ Or use a values.yaml files `helm install littlelink-server k8s-at-home/littlelink-server -f values.yaml` -# 👇 What is LittleLink? +# 👇 What is LittleLink? ![LittleLink](https://cdn.cottle.cloud/littlelink/social-circle.png) @@ -163,7 +164,7 @@ and [many.link](https://www.google.com). LittleLink was built using [Skeleton](h ![Themes](https://cdn.cottle.cloud/littlelink/themes.png) -LittleLink has more than 20 company button styles you can use and we'll be throwing more in soon. You'll also find a light and dark theme ready to go. Not a fan of the colors? Update `skeleton-light.css` or `skeleton-dark.css` to the HEX values of your choosing. +LittleLink has more than 20 company button styles you can use and we'll be throwing more in soon. You'll also find a light and dark theme ready to go. Not a fan of the colors? Update `skeleton-light.css` or `skeleton-dark.css` to the HEX values of your choosing. ![Performance](https://cdn.cottle.cloud/littlelink/performance.png) diff --git a/docker-compose.yml b/docker-compose.yml index ad26099..4e3d83b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -62,6 +62,7 @@ services: - BUYMEACOFFEE=https://www.buymeacoffee.com/ - GITLAB=https://www.gitlab.com/ - PATREON=https://www.patreon.com/technotim + - DEVTO=https://dev.to/ ports: - 8080:3000 diff --git a/public/css/brands.css b/public/css/brands.css index d19f5d6..224bbf8 100644 --- a/public/css/brands.css +++ b/public/css/brands.css @@ -422,7 +422,7 @@ button:hover, } .button.button-gitlab:hover, .button.button-gitlab:focus { - filter: brightness(90%) + filter: brightness(90%) } /* Patreon */ @@ -432,6 +432,16 @@ button:hover, } .button.button-patreon:hover, .button.button-patreon:focus { - filter: brightness(90%) + filter: brightness(90%) +} + +/* Dev.to */ +.button.button-devto { + color: #000; + background-color: #fff; +} +.button.button-devto:hover, +.button.button-devto:focus { + filter: brightness(90%); } diff --git a/src/components/Home/Home.js b/src/components/Home/Home.js index 7e91700..e58b61c 100644 --- a/src/components/Home/Home.js +++ b/src/components/Home/Home.js @@ -38,6 +38,7 @@ import stravaLogo from '../../icons/strava.svg'; import buyMeACoffeeLogo from '../../icons/buymeacoffee.svg'; import gitlabLogo from '../../icons/gitlab.svg'; import patreonLogo from '../../icons/patreon.svg'; +import devtoLogo from '../../icons/devto.svg'; function Home(props) { return ( @@ -347,6 +348,14 @@ function Home(props) { logo={patreonLogo} /> )} + {runtimeConfig.DEVTO && ( + + )}
{runtimeConfig.FOOTER}