mirror of
https://git.aramjonghu.dev/AramJonghu/aramjonghu-site.git
synced 2026-09-13 09:43:30 +02:00
Adjust(refactor): Refactor systems to current-activity
This commit is contained in:
@@ -1,14 +1,14 @@
|
|||||||
import { type ReactElement } from "react";
|
import { type ReactElement } from "react";
|
||||||
import MdProcessor from "./MdProcessor";
|
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 (
|
return (
|
||||||
<>
|
<>
|
||||||
<h1 className="text-center m-6 text-3xl font-bold text-ctp-mauve">
|
<h1 className="text-center m-6 text-3xl font-bold text-ctp-mauve">
|
||||||
Systems
|
Current activity
|
||||||
</h1>
|
</h1>
|
||||||
<MdProcessor content={systemsMd} />
|
<MdProcessor content={currentActivityMd} />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
### Language learning
|
||||||
|
|
||||||
|
Currently learning Rust and Zig programming languages.
|
||||||
|
|
||||||
|
### Projects
|
||||||
|
|
||||||
|
Currently no projects planned.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { useState, type ReactElement } from "react";
|
import { useState, type ReactElement } from "react";
|
||||||
import MdProcessor from "../components/MdProcessor";
|
import MdProcessor from "../components/MdProcessor";
|
||||||
import Systems from "../components/Systems";
|
import CurrentActivity from "../components/CurrentActivity";
|
||||||
import About from "../components/About";
|
import About from "../components/About";
|
||||||
|
|
||||||
interface ProjectInfo {
|
interface ProjectInfo {
|
||||||
@@ -73,11 +73,11 @@ export default function Home(): ReactElement {
|
|||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "systems",
|
id: "current-activity",
|
||||||
title: "Systems",
|
title: "Current-activity",
|
||||||
content: (
|
content: (
|
||||||
<>
|
<>
|
||||||
<Systems />
|
<CurrentActivity />
|
||||||
</>
|
</>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
@@ -98,14 +98,6 @@ export default function Home(): ReactElement {
|
|||||||
<h1 className="text-4xl font-bold text-ctp-mauve">
|
<h1 className="text-4xl font-bold text-ctp-mauve">
|
||||||
AramJonghu
|
AramJonghu
|
||||||
</h1>
|
</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="mt-10 border rounded p-4">
|
||||||
<div className="flex flex-wrap justify-center gap-12 mb-6">
|
<div className="flex flex-wrap justify-center gap-12 mb-6">
|
||||||
{sections.map((section) => (
|
{sections.map((section) => (
|
||||||
|
|||||||
Reference in New Issue
Block a user