11import reflex as rx
2+
23import link_bio .constants as const
3- from link_bio .components .newsletter import newsletter
44from link_bio .components .featured_link import featured_link
5- from link_bio .routes import Route
65from link_bio .components .link_button import link_button
6+ from link_bio .components .newsletter import newsletter
77from link_bio .components .title import title
8- from link_bio .styles . styles import Color , Spacing
8+ from link_bio .routes import Route
99from link_bio .state .PageState import PageState
10+ from link_bio .styles .styles import Color , Spacing
1011
1112
1213def index_links () -> rx .Component :
1314 return rx .vstack (
1415 title ("Comunidad" ),
16+ link_button (
17+ "Curso gratis de Desarrollo con IA" ,
18+ "Apúntate a mi curso 100% gratis, online y con certificado" ,
19+ "/icons/logo_symbol.svg" ,
20+ "https://mouredev.link/cursodesarrolloia" ,
21+ True ,
22+ Color .GREEN .value ,
23+ animated = True
24+ ),
1525 link_button (
1626 "mouredev pro" ,
1727 "Estudia programación de manera diferente" ,
@@ -26,16 +36,16 @@ def index_links() -> rx.Component:
2636 "/icons/code.svg" ,
2737 Route .COURSES .value ,
2838 False ,
29- Color .YELLOW .value
30- ),
31- link_button (
32- "Guías de programación" ,
33- "Mi listado de guías gratis en PDF para aprender desarrollo" ,
34- "/icons/book.svg" ,
35- const .RESOURCES_URL ,
36- True ,
37- Color .GREEN .value
39+ Color .YELLOW .value ,
3840 ),
41+ # link_button(
42+ # "Guías de programación",
43+ # "Mi listado de guías gratis en PDF para aprender desarrollo",
44+ # "/icons/book.svg",
45+ # const.RESOURCES_URL,
46+ # True,
47+ # Color.GREEN.value
48+ # ),
3949 link_button (
4050 "Discord" ,
4151 "El chat y los grupos de estudio de la comunidad" ,
0 commit comments