This commit is contained in:
tree 2023-02-21 19:24:30 +01:00
rodič 91eedce35f
revize e14e696596
2 změnil soubory, kde provedl 17 přidání a 11 odebrání

Zobrazit soubor

@ -59,9 +59,10 @@ tickets:
price: €99 price: €99
includes: includes:
- All talks & panels - All talks & panels
- Coffee breaks - Food and drinks included
- Buffet lunch - Web3Privacy t-shirt
- Networking drinks with speakers & attendees - Networking drinks with speakers & attendees
- "#Lunarpunk party"
hint: | hint: |
[Apply for a discount →](https://attend.web3privacy.info)<br />(as independent developer, student, privacy advocate, open-source contributor..) [Apply for a discount →](https://attend.web3privacy.info)<br />(as independent developer, student, privacy advocate, open-source contributor..)
- title: "#Lunarpunk Party" - title: "#Lunarpunk Party"
@ -70,6 +71,7 @@ tickets:
- 8pm - morning - 8pm - morning
- Prague rave from top DJs - Prague rave from top DJs
- VJs and projections - VJs and projections
- "\"Privacy experience\""
- Networking with attendees, speakers & sponsors - Networking with attendees, speakers & sponsors
note: "*Party access is included in the All-day Pass" note: "*Party access is included in the All-day Pass"
faq: faq:
@ -80,17 +82,20 @@ faq:
text: | text: |
[Prague Blockchain Week 2023](http://prgblockweek.com/) (#PBW23) is a decentralized gathering of all people interested in cryptocurrencies and related topics. It consists of many independent events across Jun 2 - 11, including conferences, hackathons, workshops, community meetups, as well as various parties and happy hours. [Prague Blockchain Week 2023](http://prgblockweek.com/) (#PBW23) is a decentralized gathering of all people interested in cryptocurrencies and related topics. It consists of many independent events across Jun 2 - 11, including conferences, hackathons, workshops, community meetups, as well as various parties and happy hours.
- title: Who is the event for? - title: Who is the event for?
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 300 people interested in privacy topics in the Web3 industry. We aim to make our content accessible to everyone - rather than going into deep technical detail, we'll discuss privacy topics in their broader context.
- 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? - 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. text: Tickets will go on sale in late February 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? - title: 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://attend.web3privacy.info). text: Yes, we do! We offer discounted tickets (up to 100%!) 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://attend.web3privacy.info).
- title: Why event isn't admission free? #- title: Why event isn't admission free?
text: We would like to have most of the cost of the event covered by admission fees directly from visitors. We want to be independent of sponsors and reduce the pressure to make it a "sales" or marketing event. # text: We would like to have most of the cost of the event covered by admission fees directly from visitors. We want to be independent of sponsors and reduce the pressure to make it a "sales" or marketing event.
- 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)).
- title: Will the talks be livestreamed and/or recorded?
text: Yes, we're planning both. A livestream of the conference and recordings of the talks and panels will be publicly available after the conference.
- title: I have another question, where can I contact you?
text: "You can contact the organizing team or the community around the event in our public Signal group: [chat.web3privacy.info](https://chat.web3privacy.info/)"
people: people:
- id: mykola - id: mykola
name: Mykola Siusko name: Mykola Siusko

Zobrazit soubor

@ -19,6 +19,7 @@
{ title: 'Ticket', url: '#ticket', class: 'button' }, { title: 'Ticket', url: '#ticket', class: 'button' },
{ title: 'FAQ', url: '#faq' }, { title: 'FAQ', url: '#faq' },
{ title: 'Chat', url: 'https://chat.web3privacy.info', external: true }, { title: 'Chat', url: 'https://chat.web3privacy.info', external: true },
{ title: 'Twitter', url: 'https://twitter.com/web3privacy', external: true }
]; ];
const homepageAnimation = () => { const homepageAnimation = () => {
@ -94,7 +95,7 @@
<div class="w-full md:hidden p-4"> <div class="w-full md:hidden p-4">
{#each menu.filter(i => !i.hidden) as mi} {#each menu.filter(i => !i.hidden) as mi}
<div class="my-3 mx-4"> <div class="my-3 mx-4">
<a href={mi.url} on:click={() => navbar = false}><button class="{mi.class} uppercase text-xl">{mi.title}</button></a> <a href={mi.url} on:click={() => navbar = false}><button class="{mi.class} uppercase text-xl {mi.external ? 'external' : ''}">{mi.title}</button></a>
</div> </div>
{/each} {/each}
</div> </div>