From e46f22b7e4a3d4dcde0244d23b8a2a97657cd92b Mon Sep 17 00:00:00 2001 From: tree Date: Sat, 11 Feb 2023 21:55:20 +0100 Subject: [PATCH] Update --- src/lib/config.js | 6 +++++- src/routes/+layout.svelte | 10 +++++----- src/routes/+page.svelte | 30 ++++++++++++++++++++++++++++-- 3 files changed, 38 insertions(+), 8 deletions(-) diff --git a/src/lib/config.js b/src/lib/config.js index 7ede944..6fe3d01 100644 --- a/src/lib/config.js +++ b/src/lib/config.js @@ -17,5 +17,9 @@ export default { { title: 'Network states (with a privacy focus)' }, { title: 'Solarpunk vs Lunarpunk' }, { title: 'Veksl' } - ] + ], + tickets: [ + { title: 'Conference ticket' }, + { title: 'Party ticket' } + ], } \ No newline at end of file diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 5ee2fde..660d4ff 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -3,11 +3,11 @@ export let data; const menu = [ - { title: 'About', url: '/#about' }, - { title: 'Speakers', url: '/#speakers' }, - { title: 'Program', url: '/#program' }, - { title: 'Sponsors', url: '/#sponsors' }, - { title: 'Ticket', url: '/#ticket', class: 'button' } + { title: 'About', url: '#about' }, + { title: 'Speakers', url: '#speakers' }, + { title: 'Program', url: '#program' }, + { title: 'Sponsors', url: '#sponsors' }, + { title: 'Ticket', url: '#ticket', class: 'button' } ] diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 80b3672..da646f4 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -6,7 +6,7 @@ {data.config.title} -
+
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 @@
-
+
Speakers
+
+
+
+ +
+
+
Program
+
+
+ +
+
+
Sponsors
+
+
+ +
+
+
Ticket
+
+ {#each data.config.tickets as tt} +
+
{tt.title}
+
+ {/each} +
\ No newline at end of file