Adding events and better why sectino

This commit is contained in:
metacryst
2025-11-19 15:57:27 -06:00
parent 3588a68bee
commit 2bc5c00830
8 changed files with 91 additions and 21 deletions

View File

@@ -1,6 +1,21 @@
class Join extends Shadow {
render() {
p("Membership is invitation-only. Look out for us in person, or come to an event!")
VStack(() => {
p("Membership is invitation-only. But sign up for our newsletter to hear about more events!")
HStack(() => {
input("Email", "40vmin")
.attr({name: "email", type: "email"})
button("Sign Up")
.width(15, vmin)
})
.gap(1, em)
.marginTop(1, em)
})
.alignItems("center")
.maxWidth(90, vw)
.x(50, vw).y(50, vh)
.center()
}