da.nfin.ch/src/ui/Projects/Projects.ts

22 lines
483 B
TypeScript
Raw Normal View History

2026-05-13 02:03:11 +02:00
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)
),
),
)
}