-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
77 additions
and
45 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
const cursos = [ | ||
{ | ||
nombre: "Desarrollo Web con HTML, CSS y JavaScript", | ||
imagen: "./img/courses/web.jpg", | ||
descripcion: | ||
"Aprende a crear sitios web interactivos desde cero con las tecnologías fundamentales de la web.", | ||
precio: "$49.99", | ||
}, | ||
{ | ||
nombre: "Programación en Python", | ||
imagen: "./img/courses/python.jpg", | ||
descripcion: | ||
"Domina uno de los lenguajes de programación más populares y versátiles.", | ||
precio: "$59.99", | ||
}, | ||
{ | ||
nombre: "Desarrollo de Aplicaciones Móviles con React Native", | ||
imagen: "./img/courses/movilReact.jpg", | ||
descripcion: | ||
"Crea aplicaciones móviles multiplataforma con JavaScript y React Native.", | ||
precio: "$79.99", | ||
}, | ||
{ | ||
nombre: "Bases de Datos SQL y MySQL", | ||
imagen: "./img/courses/sql.jpg", | ||
descripcion: | ||
"Aprende a diseñar y administrar bases de datos relacionales con SQL y MySQL.", | ||
precio: "$69.99", | ||
}, | ||
{ | ||
nombre: "Desarrollo de Aplicaciones con Node.js", | ||
imagen: "./img/courses/node.jpg", | ||
descripcion: | ||
"Construye aplicaciones del lado del servidor utilizando Node.js y Express.", | ||
precio: "$59.99", | ||
}, | ||
{ | ||
nombre: "Desarrollo de Aplicaciones con Java", | ||
imagen: "./img/courses/java.jpg", | ||
descripcion: | ||
"Aprende a programar en Java y desarrolla aplicaciones empresariales robustas.", | ||
precio: "$79.99", | ||
}, | ||
]; | ||
|
||
export default cursos; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters