|
| 1 | +import { DocPage, LinkType } from '@/lib/db-types' |
| 2 | + |
| 3 | +const tools: DocPage = { |
| 4 | + title: 'Herramientas', |
| 5 | + description: [ |
| 6 | + 'Diferentes herramientas que te pueden ayudar en el día a día como BackEnd.', |
| 7 | + ], |
| 8 | + contributors: [ |
| 9 | + { github_username: 'nsdonato' }, |
| 10 | + { github_username: 'eduWTR' }, |
| 11 | + ], |
| 12 | + pageItems: [ |
| 13 | + { |
| 14 | + imgPlaceholder: 'Express', |
| 15 | + titleCard: |
| 16 | + 'Entorno de trabajo para aplicaciones web para el programario Node.js, de código abierto.', |
| 17 | + links: [{ type: LinkType.Web, url: 'https://expressjs.com/' }], |
| 18 | + cover: { |
| 19 | + src: '/backend/tools/expressjs.svg', |
| 20 | + height: 70, |
| 21 | + width: 150, |
| 22 | + }, |
| 23 | + videos: [], |
| 24 | + }, |
| 25 | + { |
| 26 | + imgPlaceholder: 'Spring Boot', |
| 27 | + titleCard: |
| 28 | + 'Marco de código abierto basado en Java que se utiliza para programar aplicaciones independientes.', |
| 29 | + links: [ |
| 30 | + { type: LinkType.Web, url: 'https://spring.io/projects/spring-boot' }, |
| 31 | + ], |
| 32 | + cover: { |
| 33 | + src: '/backend/tools/spring-boot.no-invert.svg', |
| 34 | + height: 80, |
| 35 | + width: 80, |
| 36 | + }, |
| 37 | + videos: [], |
| 38 | + }, |
| 39 | + { |
| 40 | + imgPlaceholder: 'Django', |
| 41 | + titleCard: |
| 42 | + 'Framework de desarrollo web de código abierto, escrito en Python, respetando el módelo MVC', |
| 43 | + links: [{ type: LinkType.Web, url: 'https://www.djangoproject.com/' }], |
| 44 | + cover: { |
| 45 | + src: '/backend/tools/django.svg', |
| 46 | + height: 80, |
| 47 | + width: 150, |
| 48 | + }, |
| 49 | + videos: [], |
| 50 | + }, |
| 51 | + { |
| 52 | + imgPlaceholder: 'Ruby on Rails', |
| 53 | + titleCard: |
| 54 | + 'Framework de aplicaciones web de código abierto del lado del servidor escrito en el lenguaje de programación Ruby.', |
| 55 | + links: [{ type: LinkType.Web, url: 'https://rubyonrails.org/' }], |
| 56 | + cover: { |
| 57 | + src: '/backend/tools/rubyrails.no-invert.svg', |
| 58 | + height: 110, |
| 59 | + width: 110, |
| 60 | + }, |
| 61 | + videos: [], |
| 62 | + }, |
| 63 | + ], |
| 64 | +} |
| 65 | + |
| 66 | +export default tools |
0 commit comments