Skip to content

Commit

Permalink
New Skills #8
Browse files Browse the repository at this point in the history
  • Loading branch information
darsan-in committed Jul 31, 2024
1 parent 1d7163b commit 8765a13
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions app/src/components/skill-records.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { CiPenpot } from "react-icons/ci";
import { DiDart } from "react-icons/di";
import { FaGulp, FaLinux, FaNode } from "react-icons/fa";
import { FaAws, FaFreebsd, FaGitAlt, FaJenkins } from "react-icons/fa6";
import { GiDolphin } from "react-icons/gi";
import { GiDolphin, GiEyeTarget } from "react-icons/gi";
import {
IoLogoCss3,
IoLogoElectron,
Expand All @@ -34,6 +34,8 @@ import {
import {
SiAdobeillustrator,
SiAdobephotoshop,
SiArduino,
SiBurpsuite,
SiCplusplus,
SiExpress,
SiFoodpanda,
Expand All @@ -51,10 +53,11 @@ import {
SiWebassembly,
SiWebpack,
SiWindowsterminal,
SiWireshark,
} from "react-icons/si";
import Office from "../icons/office";

const skills: Record<string, any>[] = [
const skills: { text: string; icon: any }[] = [
{ text: "TypeScript", icon: BiLogoTypescript },
{ text: "JavaScript", icon: RiJavascriptFill },
{ text: "Python", icon: BiLogoPython },
Expand Down Expand Up @@ -112,6 +115,10 @@ const skills: Record<string, any>[] = [
{ text: "Nextra", icon: SiNextra },
{ text: "AWS", icon: FaAws },
{ text: "Google Cloud", icon: SiGooglecloud },
{ text: "Wireshark", icon: SiWireshark },
{ text: "Burp Suite", icon: SiBurpsuite },
{ text: "Nmap", icon: GiEyeTarget },
{ text: "Arduino", icon: SiArduino },
];

export default skills;

0 comments on commit 8765a13

Please sign in to comment.