Skip to content

Commit 397b823

Browse files
committed
Curso de Java
1 parent 502765d commit 397b823

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

link_bio/assets/icons/java.svg

+6
Loading

link_bio/link_bio/constants.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@
3939

4040
# Cursos
4141
CODE_CHALLENGES_URL = "https://retosdeprogramacion.com"
42-
JS_COURSE_URL = "https://mouredev.link/javascript"
42+
JAVA_COURSE_URL = "https://mouredev.link/java"
4343
PYTHON_COURSE_URL = "https://mouredev.link/python"
44+
JS_COURSE_URL = "https://mouredev.link/javascript"
4445
GIT_COURSE_URL = "https://mouredev.link/git"
4546
SQL_COURSE_URL = "https://mouredev.link/sql"
4647
LANGUAGES_COURSE_URL = "https://mouredev.link/lenguajes"

link_bio/link_bio/views/courses_links.py

+7
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
def courses_links() -> rx.Component:
1010
return rx.vstack(
1111
title("Cursos gratis"),
12+
link_button(
13+
"Java desde cero [en desarrollo]",
14+
"Nuevo curso de fundamentos para principiantes",
15+
"/icons/java.svg",
16+
const.JAVA_COURSE_URL,
17+
highlight_color=Color.YELLOW
18+
),
1219
link_button(
1320
"Python desde cero",
1421
"Curso de +44h: Fundamentos, frontend, backend, testing...",

0 commit comments

Comments
 (0)