import { BasePage } from "./bases.js";
import type { Page } from "./types.js";
import mySite from "./projects/my-site.js";
export const projects: Page[] = [
mySite,
].map(page => ({
title: page.title,
ref: page.ref,
content:
{page.title}
{page.content}
}));
const title = "Hornwitser's Projects";
export const projectsIndex: Page = {
title,
ref: "/projects.html",
content:
{title}
}