import { BasePage } from "./bases.js";
import type { Page } from "./types.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",
},
].map(page => ({
title: page.title,
ref: page.ref,
content:
{page.title}
Placeholder content
}));
const title = "Hornwitser's Projects";
export const projectsIndex: Page = {
title,
ref: "/projects.html",
content:
{title}
}