mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
Add ticket discount form
This commit is contained in:
parent
c015250750
commit
526095d181
3 changed files with 12 additions and 5 deletions
|
@ -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 base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
|
|
|
@ -39,6 +39,8 @@ tickets:
|
||||||
- Coffee breaks
|
- Coffee breaks
|
||||||
- Buffet lunch
|
- Buffet lunch
|
||||||
- Networking drinks with speakers & attendees
|
- 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"
|
- title: "#Lunarpunk Party"
|
||||||
price: 350 CZK (~15 EUR)
|
price: 350 CZK (~15 EUR)
|
||||||
includes:
|
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.
|
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?
|
- 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.
|
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?
|
- 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)).
|
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:
|
people:
|
||||||
|
|
|
@ -105,12 +105,10 @@
|
||||||
<div class="grid lg:grid-cols-2 gap-10 md:w-2/3 mx-auto">
|
<div class="grid lg:grid-cols-2 gap-10 md:w-2/3 mx-auto">
|
||||||
{#each data.config.tickets as tt}
|
{#each data.config.tickets as tt}
|
||||||
<div
|
<div
|
||||||
class="bg-[#0d1117] hover:border-0 py-10 px-10 {false
|
class="bg-[#0d1117] hover:border-0 py-10 px-10 hover:text-black hover:bg-white"
|
||||||
? 'hover:text-black hover:bg-white cursor-pointer'
|
|
||||||
: ''}"
|
|
||||||
>
|
>
|
||||||
<div class="text-3xl uppercase">{tt.title}</div>
|
<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">
|
<ul class="mt-6 text-lg text-left list-disc px-6">
|
||||||
{#each tt.includes as ti}
|
{#each tt.includes as ti}
|
||||||
<li>{ti}</li>
|
<li>{ti}</li>
|
||||||
|
@ -122,6 +120,9 @@
|
||||||
{#if tt.note}
|
{#if tt.note}
|
||||||
<div class="mt-10 text-base">{tt.note}</div>
|
<div class="mt-10 text-base">{tt.note}</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
{#if tt.hint}
|
||||||
|
<div class="mt-10 markdown text-base"><SvelteMarkdown source={tt.hint} /></div>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue