Skip to content

Commit

Permalink
add go to tech list
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtificialLegacy committed Jan 16, 2024
1 parent 4bbecfe commit 060a82b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/data/techlist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ const jest: Tech = {
icon: 'jest.png',
}

const tech: Tech[] = [typescript, nodejs, react, mariadb, express, html, css, git, jest]
const go: Tech = {
title: 'Go',
percentage: 20,
icon: 'Go-Logo_Blue.svg',
}

const tech: Tech[] = [typescript, nodejs, react, mariadb, express, html, css, git, jest, go]

tech.sort((a, b) => b.percentage - a.percentage)

Expand Down

0 comments on commit 060a82b

Please sign in to comment.