From 8ac6a490f00a54a0eb90d468b083d0c93dd875e5 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Sun, 10 Aug 2025 16:02:41 +0300 Subject: [PATCH] Updated skills --- src/pages/skills.astro | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) 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}

)}