Add license and mention of SvelteKit

This commit is contained in:
tree🌴 2023-02-13 19:14:44 +01:00
parent 2f17ffe5e9
commit 632f6b975f
3 changed files with 10 additions and 1 deletions

View File

@ -41,6 +41,9 @@
.text-mild {
@apply text-white/70;
}
.text-supermild {
@apply text-white/40;
}
table.table-custom {
@apply text-base;

View File

@ -14,6 +14,7 @@ parent: Web3Privacy Now
parentUrl: https://web3privacy.info
desc: June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research.
authors: "💛 Collaboration of [Web3Privacy Now](https://web3privacy.info) & [ETHBrno](https://ethbrno.cz) team"
license: This web is built with [SvelteKit](https://kit.svelte.dev/) and is [open-source](https://github.com/web3privacy/w3ps1) under CC0 license
slogan: Diving into the culture of the Web3 privacy industry
aggregator: Prague Blockchain Week 2023
aggregatorUrl: http://prgblockweek.com/

View File

@ -73,7 +73,7 @@
<div class="middle-pane-big pt-10 mx-auto">
<div class="flex gap-4">
<div class="grow">
<div class="w-32 sm:w-42">
<div class="w-32 sm:w-40">
<a href={data.config.parentUrl}><img src={data.config.logo} alt={data.config.parent} /></a>
</div>
</div>
@ -94,6 +94,11 @@
<div class="mt-4 text-mild">
<SvelteMarkdown source={data.config.authors} />
</div>
{#if data.config.license}
<div class="mt-4 text-supermild">
<SvelteMarkdown source={data.config.license} />
</div>
{/if}
</div>
</div>
</div>