mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
Add license and mention of SvelteKit
This commit is contained in:
parent
2f17ffe5e9
commit
632f6b975f
3 changed files with 10 additions and 1 deletions
|
@ -41,6 +41,9 @@
|
||||||
.text-mild {
|
.text-mild {
|
||||||
@apply text-white/70;
|
@apply text-white/70;
|
||||||
}
|
}
|
||||||
|
.text-supermild {
|
||||||
|
@apply text-white/40;
|
||||||
|
}
|
||||||
|
|
||||||
table.table-custom {
|
table.table-custom {
|
||||||
@apply text-base;
|
@apply text-base;
|
||||||
|
|
|
@ -14,6 +14,7 @@ parent: Web3Privacy Now
|
||||||
parentUrl: https://web3privacy.info
|
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.
|
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"
|
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
|
slogan: Diving into the culture of the Web3 privacy industry
|
||||||
aggregator: Prague Blockchain Week 2023
|
aggregator: Prague Blockchain Week 2023
|
||||||
aggregatorUrl: http://prgblockweek.com/
|
aggregatorUrl: http://prgblockweek.com/
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
<div class="middle-pane-big pt-10 mx-auto">
|
<div class="middle-pane-big pt-10 mx-auto">
|
||||||
<div class="flex gap-4">
|
<div class="flex gap-4">
|
||||||
<div class="grow">
|
<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>
|
<a href={data.config.parentUrl}><img src={data.config.logo} alt={data.config.parent} /></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -94,6 +94,11 @@
|
||||||
<div class="mt-4 text-mild">
|
<div class="mt-4 text-mild">
|
||||||
<SvelteMarkdown source={data.config.authors} />
|
<SvelteMarkdown source={data.config.authors} />
|
||||||
</div>
|
</div>
|
||||||
|
{#if data.config.license}
|
||||||
|
<div class="mt-4 text-supermild">
|
||||||
|
<SvelteMarkdown source={data.config.license} />
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue