2025-01-22 04:54:03 +01:00
|
|
|
import { BasePage } from "./bases.js";
|
|
|
|
import { projects } from "./projects.js"
|
|
|
|
import { updates } from "./updates.js"
|
|
|
|
|
|
|
|
const title = "Hornwitser's Site";
|
|
|
|
export const index = {
|
|
|
|
title,
|
2025-01-22 09:03:37 +01:00
|
|
|
ref: "/index.html",
|
2025-01-22 04:54:03 +01:00
|
|
|
content: <BasePage title={title}>
|
|
|
|
<main>
|
|
|
|
<div class="hero" />
|
|
|
|
<div class="author">
|
|
|
|
<div style="width: 4em; height: 4em; background-color: grey" />
|
|
|
|
<hgroup>
|
|
|
|
<h1>Hi, I'm Hornwitser!</h1>
|
|
|
|
<p>
|
2025-02-01 07:41:43 +01:00
|
|
|
Grown up, autistic, he/him, aro, gray ace
|
2025-01-22 04:54:03 +01:00
|
|
|
</p>
|
|
|
|
</hgroup>
|
|
|
|
</div>
|
|
|
|
<p>
|
|
|
|
I'm a red dragon that mostly dabble in hobby programming and the occasional artwork.
|
|
|
|
</p>
|
2025-01-22 09:03:37 +01:00
|
|
|
<h2>Latest <a href="/updates.html">Updates</a></h2>
|
2025-01-22 04:54:03 +01:00
|
|
|
<ul>
|
2025-01-22 09:03:37 +01:00
|
|
|
{ updates.map(update => <li><a href={update.ref}>{update.title}</a></li>)}
|
2025-01-22 04:54:03 +01:00
|
|
|
</ul>
|
|
|
|
<h2>Projects</h2>
|
|
|
|
<ul>
|
2025-01-22 09:03:37 +01:00
|
|
|
{ projects.map(project => <li><a href={project.ref}>{project.title}</a></li>)}
|
2025-01-22 04:54:03 +01:00
|
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
</BasePage>,
|
|
|
|
};
|