From 176247a58352f3a0a03531db97eaead65268db41 Mon Sep 17 00:00:00 2001 From: Edu <139919492+EduWTR@users.noreply.github.com> Date: Tue, 13 Feb 2024 20:43:30 +0100 Subject: [PATCH] feat: add backend languages and logos (#85) Co-authored-by: Noelia --- docs/backend/languages.mdx | 89 +++++++ .../backend/languages/bun-logo.no-invert.svg | 1 + .../backend/languages/deno-logo.no-invert.svg | 92 +++++++ .../backend/languages/go-logo.no-invert.svg | 7 + .../languages/kotlin-logo.no-invert.svg | 34 +++ .../languages/nodejs_logo.no-invert.svg | 1 + .../backend/languages/php-logo.no-invert.svg | 96 +++++++ .../languages/python-logo.no-invert.svg | 2 + .../backend/languages/ruby-logo.no-invert.svg | 240 ++++++++++++++++++ 9 files changed, 562 insertions(+) create mode 100644 public/backend/languages/bun-logo.no-invert.svg create mode 100644 public/backend/languages/deno-logo.no-invert.svg create mode 100644 public/backend/languages/go-logo.no-invert.svg create mode 100644 public/backend/languages/kotlin-logo.no-invert.svg create mode 100644 public/backend/languages/nodejs_logo.no-invert.svg create mode 100644 public/backend/languages/php-logo.no-invert.svg create mode 100644 public/backend/languages/python-logo.no-invert.svg create mode 100644 public/backend/languages/ruby-logo.no-invert.svg diff --git a/docs/backend/languages.mdx b/docs/backend/languages.mdx index 4411a56..7321fbe 100644 --- a/docs/backend/languages.mdx +++ b/docs/backend/languages.mdx @@ -4,6 +4,7 @@ description: 'Los lenguajes más utilizados a la hora de crear aplicaciones back contributors: - github_username: 'nsdonato' + - github_username: 'eduWTR' submenu: - imgPlaceholder: 'C#' @@ -26,4 +27,92 @@ submenu: links: - type: 'Web' url: 'https://www.java.com/es/' + videos: [] + + - imgPlaceholder: 'NodeJS' + titleCard: 'Entorno en tiempo de ejecución multiplataforma, de código abierto, para la capa del servidor basado en el lenguaje de programación JavaScript.' + cover: + src: '/backend/languages/nodejs_logo.no-invert.svg' + height: 80 + width: 90 + links: + - type: 'Web' + url: 'https://nodejs.org/en' + videos: [] + + - imgPlaceholder: 'PHP' + titleCard: 'Lenguaje de programación interpretado​ del lado del servidor y de uso general que se adapta especialmente al desarrollo web.' + cover: + src: '/backend/languages/php-logo.no-invert.svg' + height: 80 + width: 90 + links: + - type: 'Web' + url: 'https://www.php.net/' + videos: [] + + - imgPlaceholder: 'Bun' + titleCard: 'Entorno en tiempo de ejecución de JavaScript, como Node o Deno, todo en uno.' + cover: + src: '/backend/languages/bun-logo.no-invert.svg' + height: 80 + width: 90 + links: + - type: 'Web' + url: 'https://bun.sh/' + videos: [] + + - imgPlaceholder: 'Deno' + titleCard: 'Runtime para JavaScript y TypeScript basado en el motor V8 y escrito en Rust.' + cover: + src: '/backend/languages/deno-logo.no-invert.svg' + height: 80 + width: 90 + links: + - type: 'Web' + url: 'https://deno.com/' + videos: [] + + - imgPlaceholder: 'Python' + titleCard: 'Lenguaje de alto nivel de programación interpretado cuya filosofía hace hincapié en la legibilidad de su código.' + cover: + src: '/backend/languages/python-logo.no-invert.svg' + height: 80 + width: 90 + links: + - type: 'Web' + url: 'https://www.python.org/' + videos: [] + + - imgPlaceholder: 'Go' + titleCard: 'Lenguaje de programación concurrente y compilado con tipado estático inspirado en la sintaxis de C.' + cover: + src: '/backend/languages/go-logo.no-invert.svg' + height: 80 + width: 90 + links: + - type: 'Web' + url: 'https://go.dev/' + videos: [] + + - imgPlaceholder: 'Ruby' + titleCard: 'Lenguaje de programación interpretado, reflexivo y orientado a objetos.' + cover: + src: '/backend/languages/ruby-logo.no-invert.svg' + height: 80 + width: 90 + links: + - type: 'Web' + url: 'https://www.ruby-lang.org/es/' + videos: [] + + - imgPlaceholder: 'Kotlin' + titleCard: 'Lenguaje favorito de Google y Android.' + cover: + src: '/backend/languages/kotlin-logo.no-invert.svg' + height: 80 + width: 90 + links: + - type: 'Web' + url: 'https://kotlinlang.org/' videos: [] \ No newline at end of file diff --git a/public/backend/languages/bun-logo.no-invert.svg b/public/backend/languages/bun-logo.no-invert.svg new file mode 100644 index 0000000..7ef1500 --- /dev/null +++ b/public/backend/languages/bun-logo.no-invert.svg @@ -0,0 +1 @@ +Bun Logo \ No newline at end of file diff --git a/public/backend/languages/deno-logo.no-invert.svg b/public/backend/languages/deno-logo.no-invert.svg new file mode 100644 index 0000000..3e27585 --- /dev/null +++ b/public/backend/languages/deno-logo.no-invert.svg @@ -0,0 +1,92 @@ + + + + +Created by potrace 1.15, written by Peter Selinger 2001-2017 + + + + + + + diff --git a/public/backend/languages/go-logo.no-invert.svg b/public/backend/languages/go-logo.no-invert.svg new file mode 100644 index 0000000..693d2e8 --- /dev/null +++ b/public/backend/languages/go-logo.no-invert.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/public/backend/languages/kotlin-logo.no-invert.svg b/public/backend/languages/kotlin-logo.no-invert.svg new file mode 100644 index 0000000..3480717 --- /dev/null +++ b/public/backend/languages/kotlin-logo.no-invert.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/backend/languages/nodejs_logo.no-invert.svg b/public/backend/languages/nodejs_logo.no-invert.svg new file mode 100644 index 0000000..41d044a --- /dev/null +++ b/public/backend/languages/nodejs_logo.no-invert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/backend/languages/php-logo.no-invert.svg b/public/backend/languages/php-logo.no-invert.svg new file mode 100644 index 0000000..37a5e6f --- /dev/null +++ b/public/backend/languages/php-logo.no-invert.svg @@ -0,0 +1,96 @@ + + + Official PHP Logo + + + + image/svg+xml + + Official PHP Logo + + + Colin Viebrock + + + + + + + + + + + + Copyright Colin Viebrock 1997 - All rights reserved. + + + 1997 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/backend/languages/python-logo.no-invert.svg b/public/backend/languages/python-logo.no-invert.svg new file mode 100644 index 0000000..8aa9a10 --- /dev/null +++ b/public/backend/languages/python-logo.no-invert.svg @@ -0,0 +1,2 @@ + +file_type_python \ No newline at end of file diff --git a/public/backend/languages/ruby-logo.no-invert.svg b/public/backend/languages/ruby-logo.no-invert.svg new file mode 100644 index 0000000..7083ef4 --- /dev/null +++ b/public/backend/languages/ruby-logo.no-invert.svg @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file