mirror of
https://github.com/Kyren223/website.git
synced 2026-03-29 17:31:41 +00:00
Some minor tweaks to the contents
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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="">
|
||||
|
||||
@@ -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>)}
|
||||
|
||||
Reference in New Issue
Block a user