Adjust(refactor): Refactor systems to current-activity

This commit is contained in:
2026-07-05 20:01:21 +02:00
parent 890741335e
commit 7482999fb4
4 changed files with 15 additions and 16 deletions
@@ -1,14 +1,14 @@
import { type ReactElement } from "react";
import MdProcessor from "./MdProcessor";
import systemsMd from "../content/systems.md?raw";
import currentActivityMd from "../content/current-activity.md?raw";
export default function Systems(): ReactElement {
export default function CurrentActivity(): ReactElement {
return (
<>
<h1 className="text-center m-6 text-3xl font-bold text-ctp-mauve">
Systems
Current activity
</h1>
<MdProcessor content={systemsMd} />
<MdProcessor content={currentActivityMd} />
</>
);
}
+7
View File
@@ -0,0 +1,7 @@
### Language learning
Currently learning Rust and Zig programming languages.
### Projects
Currently no projects planned.
View File
+4 -12
View File
@@ -1,6 +1,6 @@
import { useState, type ReactElement } from "react";
import MdProcessor from "../components/MdProcessor";
import Systems from "../components/Systems";
import CurrentActivity from "../components/CurrentActivity";
import About from "../components/About";
interface ProjectInfo {
@@ -73,11 +73,11 @@ export default function Home(): ReactElement {
),
},
{
id: "systems",
title: "Systems",
id: "current-activity",
title: "Current-activity",
content: (
<>
<Systems />
<CurrentActivity />
</>
),
},
@@ -98,14 +98,6 @@ export default function Home(): ReactElement {
<h1 className="text-4xl font-bold text-ctp-mauve">
AramJonghu
</h1>
<p className="mt-4">
Software engineer building systems, services, and
experiments across a self-hosted environment.
</p>
<p className="mt-3">
This site acts as a hub for projects, infrastructure, and
personal tooling.
</p>
<div className="mt-10 border rounded p-4">
<div className="flex flex-wrap justify-center gap-12 mb-6">
{sections.map((section) => (