aboutsummaryrefslogtreecommitdiff
path: root/src/data/tools.ts
blob: 5b2d468c41fa285630f564db1eab1e953f8ecbba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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",
  },
];