feat: new website

This commit is contained in:
Dan Finch 2026-05-13 02:03:11 +02:00
commit 63a654aab4
64 changed files with 2904 additions and 0 deletions

View file

@ -0,0 +1,21 @@
import Layout from "ui/Layout"
import Window from "ui/Layout/Window"
const title = "Dan Finch - Projects"
const sigitex = "https://sigitex.com"
export default function Projects() {
return Layout(
{ title, url: "/projects" },
Window(
{
title: span(title, " (", a({ href: sigitex }, color.yellow, "SIGITEX.COM"), ")")
},
backgroundColor.black,
display.flex,
iframe({ src: "https://sigitex.com" },
flex(1)
),
),
)
}