Skip to content

Commit

Permalink
added new skills
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTijan committed Oct 6, 2024
1 parent 471efa5 commit 383c830
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/skills/Skills.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

.skill-icons-gird {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
margin-top: 1vh;
margin-bottom: 3vh;
gap: 3rem;
Expand Down
25 changes: 22 additions & 3 deletions src/components/skills/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ import Socket from "./../../images/socket.svg";
import NodeJS from "./../../images/nodej-js.png";
import Python from "./../../images/python.png";
import Firebase from "./../../images/firebase.png";
import SQL from "./../../images/sql.png";
import VUE from "./../../images/vue.png";
import Rust from "./../../images/rust.png";


export type Skill = {
name: string;
Expand Down Expand Up @@ -190,18 +194,33 @@ export const allSkills: Skill[] = [
url: "https://git-scm.com/",
img: Git
},
{
name: "PostgreSQL",
url: "https://www.postgresql.org/",
img: SQL
},
{
name: "Vue",
url: "https://vuejs.org/",
img: VUE
},
{
name: "Rust",
url: "https://www.rust-lang.org/",
img: Rust
},
];

export const skillsEn: SkillsType[] = [
{
type: "Languages",
description: "Programing languages I use:",
skills: getSkill(["Solidity", "TypeScript", "JavaScript", "HTML", "CSS", "Python"]),
skills: getSkill(["Solidity", "TypeScript", "JavaScript", "Rust", "HTML", "CSS", "Python"]),
},
{
type: "Frameworks",
description: "Frameworks with which I build my projects:",
skills: getSkill(["React", "Next.js", "React Native", "NodeJS", "Firebase", "Chainlink"]),
skills: getSkill(["React", "Next.js", "Vue","React Native", "NodeJS", "Firebase", "Chainlink"]),
},
{
type: "Tools",
Expand All @@ -216,7 +235,7 @@ export const skillsEn: SkillsType[] = [
{
type: "Data",
description: "Projects I use for data in my applications",
skills: getSkill(["The Graph", "Arweave", "IPFS"]),
skills: getSkill(["The Graph", "Arweave", "IPFS", "PostgreSQL"]),
},
];

Expand Down
Binary file added src/images/rust.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/sql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/vue.png
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 383c830

Please sign in to comment.