Skip to content

Commit db224b0

Browse files
committed
Colaboración Raiola Networks
1 parent e52af22 commit db224b0

File tree

3 files changed

+68
-0
lines changed

3 files changed

+68
-0
lines changed

link_bio/assets/raiola_networks.svg

+49
Loading

link_bio/link_bio/components/footer.py

+18
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,24 @@ def footer() -> rx.Component:
4646
href=const.REPO_URL,
4747
is_external=True
4848
),
49+
rx.text(
50+
"Con el apoyo de",
51+
rx.next.image(
52+
src=f"/raiola_networks.svg",
53+
on_click=rx.redirect(
54+
const.RAIOLA_NETWORKS_URL,
55+
external=True
56+
),
57+
width="200px",
58+
height="100%",
59+
cursor="pointer",
60+
padding_x=Size.MEDIUM.value,
61+
alt="Logo Raiola Networks"
62+
),
63+
font_size=Size.MEDIUM.value,
64+
display="flex",
65+
align_items="center"
66+
),
4967
# Se deja de utilizar hasta que se actualice la versión de next.js
5068
# float_button(
5169
# icon=rx.image(src="/icons/donate.svg"),

link_bio/link_bio/constants.py

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
ELGATO_URL = "https://elgato.sjv.io/mouredev"
3636
MVP_URL = "https://mvp.microsoft.com/es-es/PublicProfile/5004970"
3737
GITHUB_STAR_URL = "https://stars.github.com/profiles/mouredev"
38+
RAIOLA_NETWORKS_URL = "https://mouredev.link/raiola"
3839

3940
# Cursos
4041
CODE_CHALLENGES_URL = "https://retosdeprogramacion.com"

0 commit comments

Comments
 (0)