mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
Update
This commit is contained in:
parent
b65b60ae54
commit
e46f22b7e4
3 changed files with 38 additions and 8 deletions
|
@ -17,5 +17,9 @@ export default {
|
||||||
{ title: 'Network states (with a privacy focus)' },
|
{ title: 'Network states (with a privacy focus)' },
|
||||||
{ title: 'Solarpunk vs Lunarpunk' },
|
{ title: 'Solarpunk vs Lunarpunk' },
|
||||||
{ title: 'Veksl' }
|
{ title: 'Veksl' }
|
||||||
]
|
],
|
||||||
|
tickets: [
|
||||||
|
{ title: 'Conference ticket' },
|
||||||
|
{ title: 'Party ticket' }
|
||||||
|
],
|
||||||
}
|
}
|
|
@ -3,11 +3,11 @@
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
const menu = [
|
const menu = [
|
||||||
{ title: 'About', url: '/#about' },
|
{ title: 'About', url: '#about' },
|
||||||
{ title: 'Speakers', url: '/#speakers' },
|
{ title: 'Speakers', url: '#speakers' },
|
||||||
{ title: 'Program', url: '/#program' },
|
{ title: 'Program', url: '#program' },
|
||||||
{ title: 'Sponsors', url: '/#sponsors' },
|
{ title: 'Sponsors', url: '#sponsors' },
|
||||||
{ title: 'Ticket', url: '/#ticket', class: 'button' }
|
{ title: 'Ticket', url: '#ticket', class: 'button' }
|
||||||
]
|
]
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<title>{data.config.title}</title>
|
<title>{data.config.title}</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div class="bg-black">
|
<div class="bg-black" id="about">
|
||||||
<div class="middle-pane-medium pb-20 text-xl text-center mx-auto">
|
<div class="middle-pane-medium pb-20 text-xl text-center mx-auto">
|
||||||
<div class="py-32 w-1/2 mx-auto">
|
<div class="py-32 w-1/2 mx-auto">
|
||||||
For the first time in the internet’s history, web3 has made meaningful ownership of our own data possible. DeData Salon will bring 18th Century salons up to speed, inviting leaders in the space to discuss what data ownership will mean in the Web3 economy.
|
For the first time in the internet’s history, web3 has made meaningful ownership of our own data possible. DeData Salon will bring 18th Century salons up to speed, inviting leaders in the space to discuss what data ownership will mean in the Web3 economy.
|
||||||
|
@ -24,8 +24,34 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="">
|
<div class="" id="speakers">
|
||||||
<div class="middle-pane-medium pt-20 text-xl text-center mx-auto">
|
<div class="middle-pane-medium pt-20 text-xl text-center mx-auto">
|
||||||
<div class="section-header">Speakers</div>
|
<div class="section-header">Speakers</div>
|
||||||
|
<div class="h-screen"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="" id="program">
|
||||||
|
<div class="middle-pane-medium pt-20 text-xl text-center mx-auto">
|
||||||
|
<div class="section-header">Program</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="" id="sponsors">
|
||||||
|
<div class="middle-pane-medium pt-20 text-xl text-center mx-auto">
|
||||||
|
<div class="section-header">Sponsors</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="" id="ticket">
|
||||||
|
<div class="middle-pane-medium pt-20 text-xl text-center mx-auto">
|
||||||
|
<div class="section-header">Ticket</div>
|
||||||
|
<div class="grid grid-cols-2 mb-48 gap-10 w-2/3 mx-auto">
|
||||||
|
{#each data.config.tickets as tt}
|
||||||
|
<div class="border px-3 py-10">
|
||||||
|
<div class="text-2xl">{tt.title}</div>
|
||||||
|
</div>
|
||||||
|
{/each}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
Loading…
Reference in a new issue