mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
add partner and speakers
This commit is contained in:
parent
70f04ead47
commit
68769325d8
6 changed files with 66 additions and 24 deletions
|
@ -32,11 +32,15 @@
|
||||||
<div class="pb-4 px-4">
|
<div class="pb-4 px-4">
|
||||||
<div class="mt-4 speaker-name animate-speaker font-mono2">{item.name.toUpperCase()}</div>
|
<div class="mt-4 speaker-name animate-speaker font-mono2">{item.name.toUpperCase()}</div>
|
||||||
<div class="text-mild">
|
<div class="text-mild">
|
||||||
|
{#if item.twitter}
|
||||||
<a
|
<a
|
||||||
href={twitterLink(item.twitter)}
|
href={twitterLink(item.twitter)}
|
||||||
class="hover:underline animate-speaker"
|
class="hover:underline animate-speaker"
|
||||||
target="_blank">@{item.twitter}</a
|
target="_blank">@{item.twitter}</a
|
||||||
>
|
>
|
||||||
|
{:else if item.link}
|
||||||
|
<a href={item.link} class="hover:underline animate-speaker" target="_blank">{item.linkText || "link"}</a>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{#if item.caption}
|
{#if item.caption}
|
||||||
<div class="mt-2 text-sm text-supermild markdown-basic">
|
<div class="mt-2 text-sm text-supermild markdown-basic">
|
||||||
|
|
|
@ -191,6 +191,19 @@ people:
|
||||||
caption: |
|
caption: |
|
||||||
Summoner of [IranUnchained](https://www.iranunchained.com/), [Privacy Pools](https://www.privacypools.com/), [MolochDAO](https://molochdao.com/)
|
Summoner of [IranUnchained](https://www.iranunchained.com/), [Privacy Pools](https://www.privacypools.com/), [MolochDAO](https://molochdao.com/)
|
||||||
country: us
|
country: us
|
||||||
|
- id: alex-kampa
|
||||||
|
name: Alex Kampa
|
||||||
|
img: alex-kampa.jpg
|
||||||
|
link: https://lu.linkedin.com/in/alex-kampa
|
||||||
|
linkText: "@alex-kampa"
|
||||||
|
caption: |
|
||||||
|
Director at [Aragon ZK Research](https://research.aragon.org/)
|
||||||
|
- id: antoni-zolciak
|
||||||
|
name: Antoni Zolciak
|
||||||
|
img: antoni-zolciak.jpg
|
||||||
|
twitter: AntoniZolciak
|
||||||
|
caption: |
|
||||||
|
Co-founder of [Aleph Zero](https://alephzero.org/) & [Cardinal](https://cardinal.co/)
|
||||||
hosts:
|
hosts:
|
||||||
- mykola
|
- mykola
|
||||||
#- tree
|
#- tree
|
||||||
|
@ -200,13 +213,27 @@ speakers:
|
||||||
- ameen-soleimani
|
- ameen-soleimani
|
||||||
- guy-zyskind
|
- guy-zyskind
|
||||||
- max-hampshire
|
- max-hampshire
|
||||||
|
- antoni-zolciak
|
||||||
|
- alex-kampa
|
||||||
- mario-havel
|
- mario-havel
|
||||||
- manu-alzuru
|
- manu-alzuru
|
||||||
- nick-almond
|
- nick-almond
|
||||||
- juraj-bednar
|
- juraj-bednar
|
||||||
- dcbuilder
|
- dcbuilder
|
||||||
- alona-shevchenko
|
- alona-shevchenko
|
||||||
|
partnerLevels:
|
||||||
|
- key: 2
|
||||||
|
name: Sponsors
|
||||||
|
- key: null
|
||||||
|
name: Media partners
|
||||||
partners:
|
partners:
|
||||||
|
- id: aragon-zk-research
|
||||||
|
name: Aragon ZK Research
|
||||||
|
web: https://research.aragon.org/
|
||||||
|
twitter: aragon_zk
|
||||||
|
img: aragon-zk-research.svg
|
||||||
|
padding: 4
|
||||||
|
level: 2
|
||||||
- id: lunardao
|
- id: lunardao
|
||||||
name: LunarDAO
|
name: LunarDAO
|
||||||
web: https://lunardao.net
|
web: https://lunardao.net
|
||||||
|
|
|
@ -63,35 +63,38 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="" id="sponsors">
|
<div class="" id="sponsors">
|
||||||
<div class="middle-pane-medium pt-16 mx-auto pb-32">
|
<div class="middle-pane-medium pt-16 mx-auto pb-24">
|
||||||
<div class="section-header" on:mouseenter={animateText}>Partners</div>
|
<div class="section-header" on:mouseenter={animateText}>Partners</div>
|
||||||
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-2 mb-12">
|
{#each data.config.partnerLevels as level}
|
||||||
{#each data.config.partners as partner}
|
<div class="lowercase pb-6 text-xl font-mono2">{level.name}</div>
|
||||||
<div class="partner-item text-center items-center p-2" on:mouseenter={animateSection(40)}>
|
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-2 mb-6">
|
||||||
<div>
|
{#each data.config.partners.filter(p => p.level == level.key) as partner}
|
||||||
<a href={partner.web}
|
<div class="partner-item text-center items-center p-2" on:mouseenter={animateSection(40)}>
|
||||||
><img
|
|
||||||
src="/partners/{partner.img}"
|
|
||||||
class="partner-img aspect-[16/11] w-full h-full object-contain {partner.padding
|
|
||||||
? `p-${partner.padding}`
|
|
||||||
: ''}"
|
|
||||||
/></a
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div class="p-2 partner-text">
|
|
||||||
<div>
|
<div>
|
||||||
<a href={partner.web} class="font-mono2 animate-section lowercase">{partner.name}</a>
|
<a href={partner.web}
|
||||||
</div>
|
><img
|
||||||
<div>
|
src="/partners/{partner.img}"
|
||||||
<a href="https://twitter.com/{partner.twitter}" class="text-sm text-mild"
|
class="partner-img aspect-[16/11] w-full h-full object-contain {partner.padding
|
||||||
>@{partner.twitter}</a
|
? `p-${partner.padding}`
|
||||||
|
: ''}"
|
||||||
|
/></a
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="p-2 partner-text">
|
||||||
|
<div>
|
||||||
|
<a href={partner.web} class="font-mono2 animate-section lowercase">{partner.name}</a>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="https://twitter.com/{partner.twitter}" class="text-sm text-mild"
|
||||||
|
>@{partner.twitter}</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
{/each}
|
||||||
{/each}
|
</div>
|
||||||
</div>
|
{/each}
|
||||||
<div>
|
<div class="mt-10">
|
||||||
<a href={data.config.sponsorUrl}
|
<a href={data.config.sponsorUrl}
|
||||||
><button class="button text-lg" on:mouseenter={animateText}>Become a partner</button></a
|
><button class="button text-lg" on:mouseenter={animateText}>Become a partner</button></a
|
||||||
>
|
>
|
||||||
|
|
8
static/partners/aragon-zk-research.svg
Normal file
8
static/partners/aragon-zk-research.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 9.4 KiB |
BIN
static/people/alex-kampa.jpg
Normal file
BIN
static/people/alex-kampa.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
static/people/antoni-zolciak.jpg
Normal file
BIN
static/people/antoni-zolciak.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
Loading…
Reference in a new issue