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