diff --git a/ui/public/pages/Events.js b/ui/public/pages/Events.js
index dff108b..143aa64 100644
--- a/ui/public/pages/Events.js
+++ b/ui/public/pages/Events.js
@@ -32,10 +32,10 @@ class Events extends Shadow {
p(`Join us in Austin, Texas for a great dance, with free drinks and live music by Boerne's own Noah Kurtis.
Admission: $50 for men, women are free.`)
.marginRight(4, em)
- button("Buy Ticket")
+ button("Tickets Available Soon")
.color("var(--darkbrown")
.border("1px solid #ab2f007d")
- .background('var(--green)')
+ .background('var(--grey)')
.marginLeft("auto")
})
.gap(3, em)
diff --git a/ui/public/pages/Join.js b/ui/public/pages/Join.js
index a3f8c65..961262f 100644
--- a/ui/public/pages/Join.js
+++ b/ui/public/pages/Join.js
@@ -2,17 +2,22 @@ class Join extends Shadow {
render() {
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)
+ p("Membership is invitation-only. Wait to meet one of us, or come to one of our events!")
+
+
+ // 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)