adding quill logo for public pages
This commit is contained in:
@@ -1,48 +0,0 @@
|
||||
{
|
||||
"nodes": {
|
||||
"MEMBER-1": {
|
||||
"id": 1,
|
||||
"email": "samrussell99@pm.me",
|
||||
"firstName": "Sam",
|
||||
"lastName": "Russell",
|
||||
"password": "$argon2id$v=19$m=65536,t=3,p=4$PDu5qx47zzY0dX0/4iQuqw$JxePLouwOEi2Q0wA4JHQQ4GwvqAvxqWhj7n9aC8HZIk",
|
||||
"address": {
|
||||
"address1": "2014 E 9th St",
|
||||
"address2": "Unit A",
|
||||
"zip": "78702",
|
||||
"state": "Texas",
|
||||
"city": "Austin"
|
||||
},
|
||||
"tokenUsed": "810387b6-851e-4883-b9a3-c59703dc0fc9",
|
||||
"joined": "11.24.2025-12:54:360784am"
|
||||
},
|
||||
"NETWORK-1": {
|
||||
"id": 1,
|
||||
"name": "Comal County Young Republicans",
|
||||
"apps": [
|
||||
"Dashboard",
|
||||
"People",
|
||||
"Messages"
|
||||
],
|
||||
"logo": "comalyr.svg"
|
||||
},
|
||||
"NETWORK-2": {
|
||||
"id": 2,
|
||||
"name": "Hyperia",
|
||||
"apps": [
|
||||
"Dashboard",
|
||||
"People",
|
||||
"Messages"
|
||||
],
|
||||
"logo": "hyperia.svg"
|
||||
}
|
||||
},
|
||||
"edges": {
|
||||
"MEMBER_IN_NETWORK-1": {
|
||||
"id": 1,
|
||||
"to": "NETWORK-1",
|
||||
"from": "MEMBER-1",
|
||||
"created": "11.24.2025-12:54:360784am"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,11 +8,11 @@ class Home extends Shadow {
|
||||
MainContent() {
|
||||
return VStack(() => {
|
||||
HStack(() => {
|
||||
img("/_/icons/quill.svg", "6em")
|
||||
img("/_/icons/quill.svg", "6vmax")
|
||||
|
||||
p("PARCHMENT")
|
||||
.fontFamily("Nabla")
|
||||
.fontSize(6.5, em)
|
||||
.fontSize(6, vmax)
|
||||
.marginLeft(1, rem)
|
||||
.color("var(--accent)")
|
||||
})
|
||||
|
||||
@@ -8,11 +8,13 @@ class SignIn extends Shadow {
|
||||
|
||||
render() {
|
||||
ZStack(() => {
|
||||
if(window.location.search.includes("new")) {
|
||||
p("Welcome to Hyperia! You may now log in.")
|
||||
.x(50, vw).y(40, vh)
|
||||
.center()
|
||||
}
|
||||
img("/_/icons/quill.svg", "3vmax")
|
||||
.position("absolute")
|
||||
.top(2, em)
|
||||
.left(2, em)
|
||||
.onClick((done) => {
|
||||
window.navigateTo("/")
|
||||
})
|
||||
|
||||
form(() => {
|
||||
input("Email")
|
||||
|
||||
@@ -1,30 +1,41 @@
|
||||
class SignUp extends Shadow {
|
||||
render() {
|
||||
VStack(() => {
|
||||
|
||||
h2("$50 / Month Subscription")
|
||||
.color("var(--quillred)")
|
||||
|
||||
p(" - Access to Parchment Online and Parchment Desktop")
|
||||
p(" - Ability to Create Networks")
|
||||
p(" - Up to 5GB Storage Space")
|
||||
|
||||
button("Buy")
|
||||
.color("var(--quillred")
|
||||
.border("1px solid var(--quillred)")
|
||||
.marginLeft("auto")
|
||||
.fontSize(1.1, em)
|
||||
.onClick(async function() {
|
||||
this.innerText = "Loading..."
|
||||
const res = await fetch("/create-checkout-session", { method: "POST" });
|
||||
const data = await res.json();
|
||||
window.location = data.url;
|
||||
ZStack(() => {
|
||||
img("/_/icons/quill.svg", "3vmax")
|
||||
.position("absolute")
|
||||
.top(2, em)
|
||||
.left(2, em)
|
||||
.onClick((done) => {
|
||||
window.navigateTo("/")
|
||||
})
|
||||
.marginTop(2, em)
|
||||
|
||||
VStack(() => {
|
||||
|
||||
h2("$50 / Month Subscription")
|
||||
.color("var(--quillred)")
|
||||
|
||||
p(" - Access to Parchment Online and Parchment Desktop")
|
||||
p(" - Ability to Create Networks")
|
||||
p(" - Up to 5GB Storage Space")
|
||||
|
||||
button("Buy")
|
||||
.color("var(--quillred")
|
||||
.border("1px solid var(--quillred)")
|
||||
.marginLeft("auto")
|
||||
.fontSize(1.1, em)
|
||||
.onClick(async function() {
|
||||
this.innerText = "Loading..."
|
||||
const res = await fetch("/create-checkout-session", { method: "POST" });
|
||||
const data = await res.json();
|
||||
window.location = data.url;
|
||||
})
|
||||
.marginTop(2, em)
|
||||
})
|
||||
.x(50, vw).y(50, vh).center()
|
||||
.border("1px solid var(--red)")
|
||||
.padding(1, em)
|
||||
})
|
||||
.x(50, vw).y(50, vh).center()
|
||||
.border("1px solid var(--red)")
|
||||
.padding(1, em)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,6 +11,14 @@ class SignupForm extends Shadow {
|
||||
|
||||
render() {
|
||||
ZStack(() => {
|
||||
img("/_/icons/quill.svg", "3vmax")
|
||||
.position("absolute")
|
||||
.top(2, em)
|
||||
.left(2, em)
|
||||
.onClick((done) => {
|
||||
window.navigateTo("/")
|
||||
})
|
||||
|
||||
form(() => {
|
||||
|
||||
VStack(() => {
|
||||
|
||||
Reference in New Issue
Block a user