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 @@
-
+
Partners
-
- {#each data.config.partners as partner} -
-
- -
-
+ {#each data.config.partnerLevels as level} +
{level.name}
+
+ {#each data.config.partners.filter(p => p.level == level.key) as partner} + -
- {/each} -
-
+ {/each} +
+ {/each} +
diff --git a/static/partners/aragon-zk-research.svg b/static/partners/aragon-zk-research.svg new file mode 100644 index 0000000..7a62343 --- /dev/null +++ b/static/partners/aragon-zk-research.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/static/people/alex-kampa.jpg b/static/people/alex-kampa.jpg new file mode 100644 index 0000000..4d3e1e1 Binary files /dev/null and b/static/people/alex-kampa.jpg differ diff --git a/static/people/antoni-zolciak.jpg b/static/people/antoni-zolciak.jpg new file mode 100644 index 0000000..e994fec Binary files /dev/null and b/static/people/antoni-zolciak.jpg differ