From 7482999fb4cbf44d890eed397495924148fc1a75 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sun, 5 Jul 2026 20:00:03 +0200 Subject: [PATCH] Adjust(refactor): Refactor systems to current-activity --- .../{Systems.tsx => CurrentActivity.tsx} | 8 ++++---- frontend/src/content/current-activity.md | 7 +++++++ frontend/src/content/systems.md | 0 frontend/src/pages/Home.tsx | 16 ++++------------ 4 files changed, 15 insertions(+), 16 deletions(-) rename frontend/src/components/{Systems.tsx => CurrentActivity.tsx} (51%) create mode 100644 frontend/src/content/current-activity.md delete mode 100644 frontend/src/content/systems.md diff --git a/frontend/src/components/Systems.tsx b/frontend/src/components/CurrentActivity.tsx similarity index 51% rename from frontend/src/components/Systems.tsx rename to frontend/src/components/CurrentActivity.tsx index 01d54a9..0d9978c 100644 --- a/frontend/src/components/Systems.tsx +++ b/frontend/src/components/CurrentActivity.tsx @@ -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 ( <>

- Systems + Current activity

- + ); } diff --git a/frontend/src/content/current-activity.md b/frontend/src/content/current-activity.md new file mode 100644 index 0000000..440f639 --- /dev/null +++ b/frontend/src/content/current-activity.md @@ -0,0 +1,7 @@ +### Language learning + +Currently learning Rust and Zig programming languages. + +### Projects + +Currently no projects planned. diff --git a/frontend/src/content/systems.md b/frontend/src/content/systems.md deleted file mode 100644 index e69de29..0000000 diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx index c529b57..b2c429d 100644 --- a/frontend/src/pages/Home.tsx +++ b/frontend/src/pages/Home.tsx @@ -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: ( <> - + ), }, @@ -98,14 +98,6 @@ export default function Home(): ReactElement {

AramJonghu

-

- Software engineer building systems, services, and - experiments across a self-hosted environment. -

-

- This site acts as a hub for projects, infrastructure, and - personal tooling. -

{sections.map((section) => (