-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create backend tools category (#119)
Co-authored-by: Noelia <noeliadonato@gmail.com>
- Loading branch information
Showing
6 changed files
with
135 additions
and
0 deletions.
There are no files selected for viewing
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,66 @@ | ||
import { DocPage, LinkType } from '@/lib/db-types' | ||
|
||
const tools: DocPage = { | ||
title: 'Herramientas', | ||
description: [ | ||
'Diferentes herramientas que te pueden ayudar en el día a día como BackEnd.', | ||
], | ||
contributors: [ | ||
{ github_username: 'nsdonato' }, | ||
{ github_username: 'eduWTR' }, | ||
], | ||
pageItems: [ | ||
{ | ||
imgPlaceholder: 'Express', | ||
titleCard: | ||
'Entorno de trabajo para aplicaciones web para el programario Node.js, de código abierto.', | ||
links: [{ type: LinkType.Web, url: 'https://expressjs.com/' }], | ||
cover: { | ||
src: '/backend/tools/expressjs.svg', | ||
height: 70, | ||
width: 150, | ||
}, | ||
videos: [], | ||
}, | ||
{ | ||
imgPlaceholder: 'Spring Boot', | ||
titleCard: | ||
'Marco de código abierto basado en Java que se utiliza para programar aplicaciones independientes.', | ||
links: [ | ||
{ type: LinkType.Web, url: 'https://spring.io/projects/spring-boot' }, | ||
], | ||
cover: { | ||
src: '/backend/tools/spring-boot.no-invert.svg', | ||
height: 80, | ||
width: 80, | ||
}, | ||
videos: [], | ||
}, | ||
{ | ||
imgPlaceholder: 'Django', | ||
titleCard: | ||
'Framework de desarrollo web de código abierto, escrito en Python, respetando el módelo MVC', | ||
links: [{ type: LinkType.Web, url: 'https://www.djangoproject.com/' }], | ||
cover: { | ||
src: '/backend/tools/django.svg', | ||
height: 80, | ||
width: 150, | ||
}, | ||
videos: [], | ||
}, | ||
{ | ||
imgPlaceholder: 'Ruby on Rails', | ||
titleCard: | ||
'Framework de aplicaciones web de código abierto del lado del servidor escrito en el lenguaje de programación Ruby.', | ||
links: [{ type: LinkType.Web, url: 'https://rubyonrails.org/' }], | ||
cover: { | ||
src: '/backend/tools/rubyrails.no-invert.svg', | ||
height: 110, | ||
width: 110, | ||
}, | ||
videos: [], | ||
}, | ||
], | ||
} | ||
|
||
export default tools |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.