Skip to content

Commit 8fc6be9

Browse files
committed
Se añade Facebook y se elimina Spotify
1 parent e68b19a commit 8fc6be9

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

link_bio/assets/icons/facebook.svg

Lines changed: 6 additions & 0 deletions
Loading

link_bio/link_bio/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
TWITTER_X_URL = "https://twitter.com/mouredev"
77
INSTAGRAM_URL = "https://instagram.com/mouredev"
88
TIKTOK_URL = "https://tiktok.com/@mouredev"
9+
FACEBOOK_URL = "https://facebook.com/mouredev"
910
SPOTIFY_URL = "https://open.spotify.com/show/4iKXt5k2zCbAQOrMePh7qh"
1011
LINKEDIN_URL = "https://linkedin.com/in/braismoure/"
1112

link_bio/link_bio/views/header.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,21 @@ def header(details=True) -> rx.Component:
8181
"TikTok"
8282
),
8383
link_icon(
84-
"/icons/spotify.svg",
85-
const.SPOTIFY_URL,
86-
"Spotify"
84+
"/icons/facebook.svg",
85+
const.FACEBOOK_URL,
86+
"Facebook"
8787
),
88+
# link_icon(
89+
# "/icons/spotify.svg",
90+
# const.SPOTIFY_URL,
91+
# "Spotify"
92+
# ),
8893
link_icon(
8994
"/icons/linkedin.svg",
9095
const.LINKEDIN_URL,
9196
"LinkedIn"
9297
),
93-
spacing=Spacing.LARGE.value,
98+
spacing=Spacing.DEFAULT.value,
9499
padding_top=Size.SMALL.value
95100
),
96101
spacing=Spacing.ZERO.value,

0 commit comments

Comments
 (0)