22 lines
483 B
TypeScript
22 lines
483 B
TypeScript
|
|
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)
|
||
|
|
),
|
||
|
|
),
|
||
|
|
)
|
||
|
|
}
|