Add ticket discount form

This commit is contained in:
tree🌴 2023-02-13 18:10:11 +01:00
parent c015250750
commit 526095d181
3 changed files with 12 additions and 5 deletions

View File

@ -1,4 +1,4 @@
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap');
@tailwind base;
@tailwind components;

View File

@ -39,6 +39,8 @@ tickets:
- Coffee breaks
- Buffet lunch
- Networking drinks with speakers & attendees
hint: |
[Apply for a discount ](https://tally.so/r/mYPDJW)<br />(as independent developer, student, privacy advocate, open-source contributor..)
- title: "#Lunarpunk Party"
price: 350 CZK (~15 EUR)
includes:
@ -52,6 +54,10 @@ faq:
text: Our event is for anyone interested in privacy topics in the Web3 industry. There will be space for about 300 enthusiasts.
- title: Will the talks be livestreamed and/or recorded?
text: Yes, we plan do both. Livestream of the whole conference and recordings of the lectures will be publicly available.
- title: When will tickets go on sale? What will be the payment options?
text: Tickets will go on sale in early March 2023. Payment will be possible via credit card, Bitcoin (on-chain), Lightning Network or possibly other cryptocurrencies.
- title: All-day access ticket is expensive for me. Do you offer any discounts?
text: Yes, we do! We offer discounts (up to 75%) for independent developers, students and especially active privacy advocates or open-source contributors to private protocols or tools. If you are interested in a discount, please fill out [this form](https://tally.so/r/mYPDJW).
- title: How do I get to the venue?
text: Venue X10 (full name "[Divadlo X10](https://divadlox10.cz)") is located in the centre of Prague near the metro station *Národní Třída* (Line B) and *Můstek* (Line A,C). The address is [Charvátova 10/39, Prague 1, 110 00](https://goo.gl/maps/Yh8qWagnqB1DvK676) ([Google Maps](https://goo.gl/maps/Yh8qWagnqB1DvK676)).
people:

View File

@ -105,12 +105,10 @@
<div class="grid lg:grid-cols-2 gap-10 md:w-2/3 mx-auto">
{#each data.config.tickets as tt}
<div
class="bg-[#0d1117] hover:border-0 py-10 px-10 {false
? 'hover:text-black hover:bg-white cursor-pointer'
: ''}"
class="bg-[#0d1117] hover:border-0 py-10 px-10 hover:text-black hover:bg-white"
>
<div class="text-3xl uppercase">{tt.title}</div>
<div class="text-xl mt-6">{tt.price}</div>
<div class="text-xl mt-6 font-bold">{tt.price}</div>
<ul class="mt-6 text-lg text-left list-disc px-6">
{#each tt.includes as ti}
<li>{ti}</li>
@ -122,6 +120,9 @@
{#if tt.note}
<div class="mt-10 text-base">{tt.note}</div>
{/if}
{#if tt.hint}
<div class="mt-10 markdown text-base"><SvelteMarkdown source={tt.hint} /></div>
{/if}
</div>
{/each}
</div>