mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
add program
This commit is contained in:
parent
632d83e03d
commit
2848cc087e
4 changed files with 18 additions and 13 deletions
|
@ -318,6 +318,13 @@ partners:
|
||||||
img: firo.svg
|
img: firo.svg
|
||||||
class: p-2
|
class: p-2
|
||||||
level: 3
|
level: 3
|
||||||
|
- id: firn
|
||||||
|
name: Firn
|
||||||
|
web: https://app.firn.cash/
|
||||||
|
twitter: firnprotocol
|
||||||
|
img: firn.png
|
||||||
|
class: p-4 invert hover:invert-0
|
||||||
|
level: 3
|
||||||
- id: aragon-zk-research
|
- id: aragon-zk-research
|
||||||
name: Aragon ZK Research
|
name: Aragon ZK Research
|
||||||
web: https://research.aragon.org/
|
web: https://research.aragon.org/
|
||||||
|
@ -375,7 +382,7 @@ partners:
|
||||||
stages:
|
stages:
|
||||||
- id: main
|
- id: main
|
||||||
name: Main stage
|
name: Main stage
|
||||||
programNote: WIP.
|
#programNote: WIP.
|
||||||
program:
|
program:
|
||||||
main:
|
main:
|
||||||
- time: 9:00 - 9:30
|
- time: 9:00 - 9:30
|
||||||
|
@ -386,7 +393,7 @@ program:
|
||||||
- name: Mykola Siusko
|
- name: Mykola Siusko
|
||||||
desc: Welcoming visitors to our private-centric research, community and conference
|
desc: Welcoming visitors to our private-centric research, community and conference
|
||||||
- time: 9:45 - 10:05
|
- time: 9:45 - 10:05
|
||||||
title: Tornado Cash 2023: key learnings
|
title: "Tornado Cash 2023: key learnings"
|
||||||
speakers:
|
speakers:
|
||||||
- name: Ameen Soleimani
|
- name: Ameen Soleimani
|
||||||
- time: 10:10 - 10:35
|
- time: 10:10 - 10:35
|
||||||
|
@ -415,8 +422,6 @@ program:
|
||||||
- name: Nick Almond
|
- name: Nick Almond
|
||||||
- time: 13:00 - 14:00
|
- time: 13:00 - 14:00
|
||||||
title: Lunch break
|
title: Lunch break
|
||||||
speakers:
|
|
||||||
- name: TBA
|
|
||||||
- time: 14:00 - 14:20
|
- time: 14:00 - 14:20
|
||||||
title: How privacy, electronic cash and cypherpunk tech increase our freedom
|
title: How privacy, electronic cash and cypherpunk tech increase our freedom
|
||||||
speakers:
|
speakers:
|
||||||
|
|
|
@ -14,8 +14,8 @@
|
||||||
{ title: 'intro', name: '#', url: '' },
|
{ title: 'intro', name: '#', url: '' },
|
||||||
{ title: 'About', url: '#about' },
|
{ title: 'About', url: '#about' },
|
||||||
{ title: 'Speakers', url: '#speakers' },
|
{ title: 'Speakers', url: '#speakers' },
|
||||||
//{ title: 'Program', url: '#program' },
|
{ title: 'Program', url: '#program' },
|
||||||
//{ title: 'Sponsors', url: '#sponsors' },
|
{ title: 'Sponsors', url: '#sponsors' },
|
||||||
{ title: 'FAQ', url: '#faq' },
|
{ title: 'FAQ', url: '#faq' },
|
||||||
{
|
{
|
||||||
title: 'Chat',
|
title: 'Chat',
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--div class="bg-black" id="program">
|
<div class="bg-black" id="program">
|
||||||
<div class="middle-pane-medium pt-16 mx-auto pb-32">
|
<div class="middle-pane-medium pt-16 mx-auto pb-32">
|
||||||
<div class="section-header" on:mouseenter={animateText}>Program</div>
|
<div class="section-header" on:mouseenter={animateText}>Program</div>
|
||||||
{#if data.config.programNote}
|
{#if data.config.programNote}
|
||||||
|
@ -117,9 +117,9 @@
|
||||||
{#each data.config.stages
|
{#each data.config.stages
|
||||||
.map((s) => ({ ...s, program: data.config.program[s.id] }))
|
.map((s) => ({ ...s, program: data.config.program[s.id] }))
|
||||||
.filter((s) => s.program) as stage}
|
.filter((s) => s.program) as stage}
|
||||||
<div class="w-auto xl:w-1/2 mb-10 xl:mb-0">
|
<div class="w-auto mb-10 xl:mb-0 mx-auto">
|
||||||
<div class="text-xl font-bold mb-4 font-mono2 lowercase">{stage.name}</div>
|
<div class="text-xl font-bold mb-4 font-mono2 lowercase">{stage.name}</div>
|
||||||
<table class="table-auto table-custom w-full mt-8">
|
<table class="mx-auto xl:max-w-5xl table-auto table-custom w-full mt-8">
|
||||||
<tbody>
|
<tbody>
|
||||||
{#each stage.program as pi}
|
{#each stage.program as pi}
|
||||||
<tr class="" on:mouseenter={animateSection(35)}>
|
<tr class="" on:mouseenter={animateSection(35)}>
|
||||||
|
@ -134,10 +134,10 @@
|
||||||
</td>
|
</td>
|
||||||
<td class="text-left">
|
<td class="text-left">
|
||||||
<div class="">
|
<div class="">
|
||||||
<span class="animate-section {pi.type === 'other' ? 'text-mild' : ''}"
|
<div><span class="animate-section {pi.type === 'other' ? 'text-mild' : ''}"
|
||||||
>{pi.title}</span
|
>{pi.title}</span
|
||||||
>
|
></div>
|
||||||
{pi.speakers ? '― ' + pi.speakers[0]?.name : ''}
|
<div>{pi.speakers ? '― ' + pi.speakers[0]?.name : ''}</div>
|
||||||
</div>
|
</div>
|
||||||
{#if pi.desc}
|
{#if pi.desc}
|
||||||
<div class="mt-2 text-sm description text-mild markdown">
|
<div class="mt-2 text-sm description text-mild markdown">
|
||||||
|
@ -153,7 +153,7 @@
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div-->
|
</div>
|
||||||
|
|
||||||
<div class="" id="ticket">
|
<div class="" id="ticket">
|
||||||
<div class="middle-pane-medium pt-16 mx-auto">
|
<div class="middle-pane-medium pt-16 mx-auto">
|
||||||
|
|
BIN
static/partners/firn.png
Normal file
BIN
static/partners/firn.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 174 KiB |
Loading…
Reference in a new issue