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) => (