import { useState } from "react"; import ProjectsReadme from "../components/ProjectsReadme"; export default function Home() { const projectList = [ { id: "site", name: "aramjonghu-site", url: "https://git.aramjonghu.nl/AramJonghu/aramjonghu-site/raw/branch/master/README.md", }, { id: "game", name: "Game (Gameron the Lost Level)", url: "https://git.aramjonghu.nl/AramJonghu/gameron-the-lost-level/src/branch/master/README.md", }, { id: "nvim", name: "Nvim Config", url: "https://git.aramjonghu.nl/AramJonghu/nvim/src/branch/main/README.md", }, ]; const [projIdx, setProjIdx] = useState(0); const prevProject = () => setProjIdx((i) => (i - 1 + projectList.length) % projectList.length); const nextProject = () => setProjIdx((i) => (i + 1) % projectList.length); const [activeTab, setActiveTab] = useState("about"); const sections = [ { id: "projects", title: "Projects", content: ( <>
Systems content goes here.
, }, { id: "about", title: "About", content:About content goes here.
, }, ]; return (Software engineer building systems, services, and experiments across a self-hosted environment.
This site acts as a hub for projects, infrastructure, and personal tooling.