From 7da7de670c26f1c81ca76c34e5e6258f25be9f14 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Thu, 14 Nov 2024 14:09:29 +0200 Subject: [PATCH] Some minor tweaks to the contents --- src/components/RadarChart.astro | 3 ++- src/pages/projects.astro | 2 +- src/pages/skills.astro | 25 ++++++++----------------- 3 files changed, 11 insertions(+), 19 deletions(-) diff --git a/src/components/RadarChart.astro b/src/components/RadarChart.astro index f18bc21..0a3d434 100644 --- a/src/components/RadarChart.astro +++ b/src/components/RadarChart.astro @@ -115,7 +115,8 @@ const shapeClass = "stroke-[var(--primary)] fill-[#7ed4fb]/50"; x={0} y={0} fill="var(--secondary)" - font-size="24px" + font-size="2rem" + font-weight="bold" text-anchor="middle" transform=`rotate(${textAngle})` dominant-baseline="middle" diff --git a/src/pages/projects.astro b/src/pages/projects.astro index c41db99..382fcef 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -3,7 +3,7 @@ import Terminal from "@layouts/Terminal.astro"; import Project from "@components/Project.astro"; --- - +
diff --git a/src/pages/skills.astro b/src/pages/skills.astro index 458ea27..f71efe3 100644 --- a/src/pages/skills.astro +++ b/src/pages/skills.astro @@ -5,30 +5,21 @@ import TerminalBorder from "@components/TerminalBorder.astro"; const max = 100; const data = [ - { name: "Gamedev", weight: 70 }, - { name: "Backend", weight: 40 }, - { name: "Low-Level", weight: 63 }, - { name: "Tooling", weight: 100 }, + { name: "Gamedev", weight: 80 }, + { name: "Backend", weight: 50 }, + { name: "Low-Level", weight: 70 }, + { name: "Tooling", weight: 99 }, { name: "Frontend", weight: 15 }, ]; const langs = ["Java", "C/C++", "Golang", "Kotlin", "Rust", "Lua"]; -const tools = [ - "Git & GitHub", - "Sqlite3", - "Neovim and IntelliJ", - "Linux", -]; -const frameworks = [ - "Spigot API", - "Bubbletea", - "Astro", -]; +const tools = ["Git & GitHub", "Sqlite3", "Neovim and IntelliJ", "Linux"]; +const frameworks = ["Spigot API", "Bubbletea", "Astro"]; --- - +
-
+
{langs.map((lang) =>

{lang}

)}