diff --git a/src/lib/components/PeopleList.svelte b/src/lib/components/PeopleList.svelte
index 135fa64..7d8996a 100644
--- a/src/lib/components/PeopleList.svelte
+++ b/src/lib/components/PeopleList.svelte
@@ -32,11 +32,15 @@
{item.name.toUpperCase()}
+ {#if item.twitter}
@{item.twitter}
+ {:else if item.link}
+
{item.linkText || "link"}
+ {/if}
{#if item.caption}
diff --git a/src/lib/config.yaml b/src/lib/config.yaml
index c08fe38..19da3ff 100644
--- a/src/lib/config.yaml
+++ b/src/lib/config.yaml
@@ -191,6 +191,19 @@ people:
caption: |
Summoner of [IranUnchained](https://www.iranunchained.com/), [Privacy Pools](https://www.privacypools.com/), [MolochDAO](https://molochdao.com/)
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:
- mykola
#- tree
@@ -200,13 +213,27 @@ speakers:
- ameen-soleimani
- guy-zyskind
- max-hampshire
+ - antoni-zolciak
+ - alex-kampa
- mario-havel
- manu-alzuru
- nick-almond
- juraj-bednar
- dcbuilder
- alona-shevchenko
+partnerLevels:
+ - key: 2
+ name: Sponsors
+ - key: null
+ name: Media 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
name: LunarDAO
web: https://lunardao.net
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index ae6323a..35917f3 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -63,35 +63,38 @@