diff options
| author | schererleander <leander@schererleander.de> | 2025-07-14 18:12:45 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-07-14 18:12:45 +0200 |
| commit | fb039ecfcbcdbd1266b9f48829bb7bef223b4e11 (patch) | |
| tree | f1dfff9780a2eb803488e9fb98a12331ef34148f /src | |
| parent | 29d4d624b2056242ef5b119c105db28f950f27c3 (diff) | |
feat: programming languages/tools
Diffstat (limited to 'src')
| -rw-r--r-- | src/data/tools.ts | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/data/tools.ts b/src/data/tools.ts new file mode 100644 index 0000000..5b2d468 --- /dev/null +++ b/src/data/tools.ts @@ -0,0 +1,56 @@ +export const Tools = [ + { + name: "Linux", + color: "bg-neutral-500/20", + description: "Server and desktop OS", + image: "/icons/linux.svg", + }, + { + name: "Git", + color: "bg-orange-500/20", + description: "Version control", + image: "/icons/git.svg", + }, + { + name: "Docker", + color: "bg-blue-500/20", + description: "Containerization", + image: "/icons/docker.svg", + }, + { + name: "Python", + color: "bg-yellow-500/20", + description: "Scripting lang", + image: "/icons/python.svg", + }, + { + name: "Java", + color: "bg-orange-500/20", + description: "Object-oriented programming", + image: "/icons/java.svg", + }, + { + name: "Tailwind", + color: "bg-blue-500/20", + description: "CSS framework", + image: "/icons/tailwind.svg", + }, + { + name: "React", + color: "bg-blue-500/20", + description: "UI library", + image: "/icons/react.svg", + }, + { + name: "TypeScript", + color: "bg-blue-500/20", + description: "JavaScript but better", + image: "/icons/typescript.svg", + }, + { + name: "MongoDB", + color: "bg-green-500/20", + description: "Database", + image: "/icons/mongodb.svg", + }, +];
\ No newline at end of file |
