diff --git a/src/pages/skills.astro b/src/pages/skills.astro index e29b139..7151036 100644 --- a/src/pages/skills.astro +++ b/src/pages/skills.astro @@ -5,33 +5,35 @@ import TerminalBorder from "@components/TerminalBorder.astro"; const max = 100; const data = [ - { name: "Gamedev", weight: 80 }, - { name: "Backend", weight: 50 }, - { name: "Low-Level", weight: 70 }, - { name: "Tooling", weight: 99 }, + { name: "Tooling", weight: 75 }, + { name: "Backend", weight: 80 }, + { name: "Gamedev", weight: 99 }, + { name: "Low-Level", weight: 95 }, { name: "Frontend", weight: 15 }, ]; -const langs = ["Java", "C/C++", "Golang", "Kotlin", "Rust", "Lua"]; +const langs = [ + "C/C++", "Golang", "Java", "SQL", "Python", + "Zig", "Rust", "Kotlin", "C#" ,"Lua" +]; const tools = [ "Git & GitHub", - "Sqlite3", - "Neovim and IntelliJ", - "Linux", - "NixOS", + "SQLite and Firebase", + "Linux & NixOS", + "Neovim and Tmux", ]; -const frameworks = ["Spigot API", "Bubbletea", "Astro"]; +const frameworks = ["Raylib", "Spigot API", "Bubbletea", "Astro"]; ---
-
+
{langs.map((lang) =>

{lang}

)}
- +
{frameworks.map((framework) =>

{framework}

)}