Some minor tweaks to the contents

This commit is contained in:
2024-11-14 14:09:29 +02:00
parent 044d658235
commit 7da7de670c
3 changed files with 11 additions and 19 deletions

View File

@@ -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"

View File

@@ -3,7 +3,7 @@ import Terminal from "@layouts/Terminal.astro";
import Project from "@components/Project.astro";
---
<Terminal path="skills">
<Terminal path="projects/">
<div class="w-full max-w-full">
<div class="grid gap-4 grid-cols-[2fr_1fr]">
<div class="">

View File

@@ -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"];
---
<Terminal path="skills">
<Terminal path="skills.md">
<div class="flex">
<div class="w-[60%] flex-column items-center ">
<div class="w-[60%] flex-column items-center">
<TerminalBorder header="Languages">
<div class="grid md:grid-cols-3 items-center gap-x-8">
{langs.map((lang) => <p>{lang}</p>)}