Early draft of website content

This commit is contained in:
Hornwitser 2025-01-25 08:55:26 +01:00
parent ef8aaa6f6d
commit f7bc525310
8 changed files with 163 additions and 23 deletions

View file

@ -1,33 +1,15 @@
import { BasePage } from "./bases.js";
import type { Page } from "./types.js";
import mySite from "./projects/my-site.js";
export const projects: Page[] = [
{
title: "Buddhabrot renderer",
ref: "/projects/buddhabrot.html",
},
{
title: "Wooden Drawing Board",
ref: "/projects/drafting-board.html",
},
{
title: "Flying Hornwitser Paper Craft",
ref: "/projects/paper-hornwitser.html",
},
{
title: "Prototype Soren Plush",
ref: "/projects/plush-soren.html",
},
{
title: "Blender to CSS export script",
ref: "/projects/blender-css.html",
},
mySite,
].map(page => ({
title: page.title,
ref: page.ref,
content: <BasePage title={page.title}>
<h1>{page.title}</h1>
<p>Placeholder content</p>
{page.content}
</BasePage>
}));