-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
send email when signing up for ticket
- need to show how many tickets an event has - enterprise me on prod and change max users in event, plus make sure there aren't any hardcoded 75 user limits - contact email in more places Co-Authored-By: Bloxs <[email protected]>
- Loading branch information
1 parent
c8b4cab
commit 64bbe11
Showing
22 changed files
with
161 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
import { ComponentChildren } from "preact"; | ||
|
||
export const faqs: FAQ[] = [ | ||
{ | ||
q: "How do I contact Events?", | ||
a: ( <>You can contact us at <a href="mailto:[email protected]" class="underline font-medium">[email protected]</a></> ) | ||
}, | ||
{ | ||
q: "How can I get alpha access?", | ||
a: "We are currently in a closed alpha and not accepting new clients", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import CTA from "@/components/buttons/cta.tsx"; | ||
import Deletion from "@/islands/events/components/delete.tsx"; | ||
import { useSignal } from "@preact/signals"; | ||
|
||
const Cookies = () => { | ||
const open = useSignal(false); | ||
|
||
return ( | ||
<div class="absolute z-50 bottom-4 right-4 bg-white shadow-lg rounded-md p-4"> | ||
Test | ||
</div> | ||
); | ||
}; | ||
|
||
export default Cookies; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,12 +24,26 @@ export const Contact = ({ email }: { email: string }) => { | |
}} | ||
> | ||
<h2 class="font-bold text-lg">Contact Organizer</h2> | ||
<h3 class="font-medium mt-2">Are you sure?</h3> | ||
<p> | ||
Are you looking for Events support or an organizer contact email? | ||
It's simple and easy to contact Events, the ticketing platform | ||
used to make this event. Create a ticket by emailing Events at{" "} | ||
<a href="mailto:[email protected]" class="underline font-medium"> | ||
[email protected] | ||
</a>. | ||
</p> | ||
<p class="mt-4 text-pretty"> | ||
Still want to contact the organizer? Agree to our terms below to | ||
access it. | ||
</p> | ||
<label class="flex mt-4 items-start cursor-pointer"> | ||
<input | ||
type="checkbox" | ||
name="agreed" | ||
class="mr-4 mt-1.5" | ||
onClick={(e) => (checked.value = e.currentTarget.checked)} | ||
disabled={checked.value} | ||
/> | ||
<p> | ||
I agree to interacting with this email in a professional way and | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.