Skip to content

Commit

Permalink
feat: create backend tools category (#119)
Browse files Browse the repository at this point in the history
Co-authored-by: Noelia <noeliadonato@gmail.com>
  • Loading branch information
EduWTR and nsdonato authored Apr 4, 2024
1 parent 4518698 commit 3f9d186
Show file tree
Hide file tree
Showing 6 changed files with 135 additions and 0 deletions.
66 changes: 66 additions & 0 deletions db/backend/tools.ts
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
4 changes: 4 additions & 0 deletions db/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ const data: Menu[] = [
name: 'Aprender',
url: '/backend/learn',
},
{
name: 'Herramientas',
url: '/backend/tools',
},
],
},
{
Expand Down
28 changes: 28 additions & 0 deletions public/backend/tools/django.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/backend/tools/expressjs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/backend/tools/rubyrails.no-invert.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions public/backend/tools/spring-boot.no-invert.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3f9d186

Please sign in to comment.