feat: new website
This commit is contained in:
commit
63a654aab4
64 changed files with 2904 additions and 0 deletions
21
src/ui/Projects/Projects.ts
Normal file
21
src/ui/Projects/Projects.ts
Normal 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)
|
||||
),
|
||||
),
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue