mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
deploy: 956f7b62ae
This commit is contained in:
parent
cec2d2993f
commit
c4b7021376
13 changed files with 786 additions and 394 deletions
|
@ -1,6 +1,5 @@
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
! tailwindcss v3.2.6 | MIT License | https://tailwindcss.com
|
! tailwindcss v3.2.6 | MIT License | https://tailwindcss.com
|
||||||
*/
|
*/
|
||||||
|
@ -485,11 +484,13 @@ body{
|
||||||
font-family: Ubuntu Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
font-family: Ubuntu Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer a, .markdown a{
|
footer a,
|
||||||
|
.markdown a{
|
||||||
text-decoration-line: underline;
|
text-decoration-line: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer a:hover, .markdown a:hover{
|
footer a:hover,
|
||||||
|
.markdown a:hover{
|
||||||
text-decoration-line: none;
|
text-decoration-line: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -565,7 +566,8 @@ table.table-custom{
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-custom td, .table-custom th{
|
.table-custom td,
|
||||||
|
.table-custom th{
|
||||||
padding-left: 0.5rem;
|
padding-left: 0.5rem;
|
||||||
padding-right: 0.5rem;
|
padding-right: 0.5rem;
|
||||||
padding-top: 0.75rem;
|
padding-top: 0.75rem;
|
||||||
|
@ -575,7 +577,8 @@ table.table-custom{
|
||||||
|
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
|
|
||||||
.table-custom td, .table-custom th{
|
.table-custom td,
|
||||||
|
.table-custom th{
|
||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
padding-right: 1rem;
|
padding-right: 1rem;
|
||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
|
@ -662,6 +665,10 @@ table.table-custom{
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mb-8{
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
.mr-1{
|
.mr-1{
|
||||||
margin-right: 0.25rem;
|
margin-right: 0.25rem;
|
||||||
}
|
}
|
||||||
|
@ -754,6 +761,10 @@ table.table-custom{
|
||||||
list-style-type: disc;
|
list-style-type: disc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grid-cols-2{
|
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||||
|
}
|
||||||
|
|
||||||
.items-center{
|
.items-center{
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
@ -925,6 +936,11 @@ table.table-custom{
|
||||||
text-decoration-line: none;
|
text-decoration-line: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grayscale{
|
||||||
|
--tw-grayscale: grayscale(100%);
|
||||||
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
||||||
|
}
|
||||||
|
|
||||||
.hover\:border-0:hover{
|
.hover\:border-0:hover{
|
||||||
border-width: 0px;
|
border-width: 0px;
|
||||||
}
|
}
|
||||||
|
@ -957,11 +973,24 @@ table.table-custom{
|
||||||
text-decoration-line: none;
|
text-decoration-line: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hover\:grayscale-0:hover{
|
||||||
|
--tw-grayscale: grayscale(0);
|
||||||
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
||||||
|
}
|
||||||
|
|
||||||
@media (min-width: 640px){
|
@media (min-width: 640px){
|
||||||
|
|
||||||
|
.sm\:w-1\/3{
|
||||||
|
width: 33.333333%;
|
||||||
|
}
|
||||||
|
|
||||||
.sm\:w-16{
|
.sm\:w-16{
|
||||||
width: 4rem;
|
width: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sm\:gap-10{
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
|
@ -1,5 +1,5 @@
|
||||||
import { _ } from "./_layout-eb571bbb.js";
|
import { _ } from "./_layout-7c48fe5f.js";
|
||||||
import { default as default2 } from "../components/pages/_layout.svelte-5dd9ec09.js";
|
import { default as default2 } from "../components/pages/_layout.svelte-24448b68.js";
|
||||||
export {
|
export {
|
||||||
default2 as component,
|
default2 as component,
|
||||||
_ as universal
|
_ as universal
|
|
@ -1,4 +1,4 @@
|
||||||
import { default as default2 } from "../components/pages/_page.svelte-88028a45.js";
|
import { default as default2 } from "../components/pages/_page.svelte-d76d2d10.js";
|
||||||
export {
|
export {
|
||||||
default2 as component
|
default2 as component
|
||||||
};
|
};
|
|
@ -2689,11 +2689,11 @@ var jsYaml = {
|
||||||
const CONFIG = jsYaml.load(`
|
const CONFIG = jsYaml.load(`
|
||||||
|
|
||||||
title: Web3Privacy Prague 2023
|
title: Web3Privacy Prague 2023
|
||||||
shortname: Web3Privacy Summit
|
shortname: "Web3Privacy Summit #1"
|
||||||
date: Monday, 5. June 2023
|
date: Monday, 5. June 2023
|
||||||
venue: X10, Prague
|
venue: X10, Prague
|
||||||
slogan: |
|
slogan: |
|
||||||
We need to protect our privacy, and that's why we're coming together on June 5 to Prague to sit down and discuss different aspects of privacy in the Web3 industry - how we can help shape it and make it more accessible - building a shared culture. Conference was created to complement the [Web3Privacy Now](http://web3privacy.info/) research project.
|
We need to protect our privacy, and that's why we're coming together on June 5 to Prague to sit down and discuss different aspects of privacy in the Web3 industry - how we can help shape it and make it more accessible - building a shared culture. The conference complements the research project [Web3Privacy Now](http://web3privacy.info/) and was created by joining forces with the production team of the privacy hackathon [ETHBrno](https://ethbrno.cz/).
|
||||||
themes:
|
themes:
|
||||||
- title: Human rights DAOs (pro-privacy)
|
- title: Human rights DAOs (pro-privacy)
|
||||||
- title: Identity (ID)
|
- title: Identity (ID)
|
||||||
|
@ -2738,8 +2738,18 @@ faq:
|
||||||
text: Yes, we plan do both. Livestream of the whole conference and recordings of the lectures will be publicly available.
|
text: Yes, we plan do both. Livestream of the whole conference and recordings of the lectures will be publicly available.
|
||||||
- title: How do I get to the venue?
|
- title: How do I get to the venue?
|
||||||
text: Venue X10 (full name "[Divadlo X10](https://divadlox10.cz)") is located in the centre of Prague near the metro station *Národní Třída* (Line B) and *Můstek* (Line A,C). The address is [Charvátova 10/39, Prague 1, 110 00](https://goo.gl/maps/Yh8qWagnqB1DvK676) ([Google Maps](https://goo.gl/maps/Yh8qWagnqB1DvK676)).
|
text: Venue X10 (full name "[Divadlo X10](https://divadlox10.cz)") is located in the centre of Prague near the metro station *Národní Třída* (Line B) and *Můstek* (Line A,C). The address is [Charvátova 10/39, Prague 1, 110 00](https://goo.gl/maps/Yh8qWagnqB1DvK676) ([Google Maps](https://goo.gl/maps/Yh8qWagnqB1DvK676)).
|
||||||
- title: Will there be any food or drink?
|
people:
|
||||||
text: We don't know, but we'll do our best. This unfortunately depends on the sponsors.
|
- id: mykola
|
||||||
|
name: Mykola Siusko
|
||||||
|
twitter: nicksvyaznoy
|
||||||
|
img: mykola.png
|
||||||
|
- id: tree
|
||||||
|
name: Tree
|
||||||
|
twitter: treecz
|
||||||
|
img: tree.jpeg
|
||||||
|
hosts:
|
||||||
|
- mykola
|
||||||
|
- tree
|
||||||
program:
|
program:
|
||||||
- time: 9:00 - 9:30
|
- time: 9:00 - 9:30
|
||||||
title: Registration & networking
|
title: Registration & networking
|
|
@ -208,7 +208,7 @@ function create_fragment(ctx) {
|
||||||
t17 = text("💛 Collaboration of ");
|
t17 = text("💛 Collaboration of ");
|
||||||
a5 = element("a");
|
a5 = element("a");
|
||||||
t18 = text("Web3Privacy Now");
|
t18 = text("Web3Privacy Now");
|
||||||
t19 = text(" & ");
|
t19 = text("\n & ");
|
||||||
a6 = element("a");
|
a6 = element("a");
|
||||||
t20 = text("ETHBrno");
|
t20 = text("ETHBrno");
|
||||||
t21 = text(" team");
|
t21 = text(" team");
|
||||||
|
@ -274,7 +274,7 @@ function create_fragment(ctx) {
|
||||||
t9 = claim_space(div9_nodes);
|
t9 = claim_space(div9_nodes);
|
||||||
p1 = claim_element(div9_nodes, "P", {});
|
p1 = claim_element(div9_nodes, "P", {});
|
||||||
var p1_nodes = children(p1);
|
var p1_nodes = children(p1);
|
||||||
a1 = claim_element(p1_nodes, "A", { href: true, class: true });
|
a1 = claim_element(p1_nodes, "A", { href: true, target: true, class: true });
|
||||||
var a1_nodes = children(a1);
|
var a1_nodes = children(a1);
|
||||||
t10 = claim_text(a1_nodes, "Prague Blockchain Week 2023");
|
t10 = claim_text(a1_nodes, "Prague Blockchain Week 2023");
|
||||||
a1_nodes.forEach(detach);
|
a1_nodes.forEach(detach);
|
||||||
|
@ -330,7 +330,7 @@ function create_fragment(ctx) {
|
||||||
var a5_nodes = children(a5);
|
var a5_nodes = children(a5);
|
||||||
t18 = claim_text(a5_nodes, "Web3Privacy Now");
|
t18 = claim_text(a5_nodes, "Web3Privacy Now");
|
||||||
a5_nodes.forEach(detach);
|
a5_nodes.forEach(detach);
|
||||||
t19 = claim_text(div16_nodes, " & ");
|
t19 = claim_text(div16_nodes, "\n & ");
|
||||||
a6 = claim_element(div16_nodes, "A", { href: true, class: true });
|
a6 = claim_element(div16_nodes, "A", { href: true, class: true });
|
||||||
var a6_nodes = children(a6);
|
var a6_nodes = children(a6);
|
||||||
t20 = claim_text(a6_nodes, "ETHBrno");
|
t20 = claim_text(a6_nodes, "ETHBrno");
|
||||||
|
@ -356,8 +356,9 @@ function create_fragment(ctx) {
|
||||||
attr(div5, "class", "fixed w-full h-18 bg-black pt-6 md:pt-2 pb-2");
|
attr(div5, "class", "fixed w-full h-18 bg-black pt-6 md:pt-2 pb-2");
|
||||||
attr(div6, "class", "text-5xl md:text-8xl font-bold uppercase mb-4 md:mb-8");
|
attr(div6, "class", "text-5xl md:text-8xl font-bold uppercase mb-4 md:mb-8");
|
||||||
attr(div7, "class", "text-3xl md:text-5xl md:mb-4");
|
attr(div7, "class", "text-3xl md:text-5xl md:mb-4");
|
||||||
attr(div8, "class", "text-3xl md:text-5xl");
|
attr(div8, "class", "text-3xl md:text-5xl uppercase");
|
||||||
attr(a1, "href", "https://prgblockweek.com");
|
attr(a1, "href", "https://prgblockweek.com");
|
||||||
|
attr(a1, "target", "_blank");
|
||||||
attr(a1, "class", "underline hover:no-underline external external-mild");
|
attr(a1, "class", "underline hover:no-underline external external-mild");
|
||||||
attr(div9, "class", "mt-8 text-lg text-mild mx-4");
|
attr(div9, "class", "mt-8 text-lg text-mild mx-4");
|
||||||
attr(div10, "class", "mx-auto");
|
attr(div10, "class", "mx-auto");
|
File diff suppressed because it is too large
Load diff
|
@ -1,4 +0,0 @@
|
||||||
import { l } from "../../chunks/_layout-eb571bbb.js";
|
|
||||||
export {
|
|
||||||
l as load
|
|
||||||
};
|
|
4
_app/immutable/modules/pages/_layout.js-d7f033d4.js
Normal file
4
_app/immutable/modules/pages/_layout.js-d7f033d4.js
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
import { l } from "../../chunks/_layout-7c48fe5f.js";
|
||||||
|
export {
|
||||||
|
l as load
|
||||||
|
};
|
|
@ -900,9 +900,9 @@ const __vitePreload = function preload(baseModule, deps, importerUrl) {
|
||||||
};
|
};
|
||||||
const matchers = {};
|
const matchers = {};
|
||||||
const nodes = [
|
const nodes = [
|
||||||
() => __vitePreload(() => import("./chunks/0-a7144348.js"), true ? ["./chunks/0-a7144348.js","./chunks/_layout-eb571bbb.js","./components/pages/_layout.svelte-5dd9ec09.js","./chunks/index-a17c58e1.js","./assets/_layout-9d8a13a9.css"] : void 0, import.meta.url),
|
() => __vitePreload(() => import("./chunks/0-5d327e30.js"), true ? ["./chunks/0-5d327e30.js","./chunks/_layout-7c48fe5f.js","./components/pages/_layout.svelte-24448b68.js","./chunks/index-a17c58e1.js","./assets/_layout-9214de11.css"] : void 0, import.meta.url),
|
||||||
() => __vitePreload(() => import("./chunks/1-1568ac60.js"), true ? ["./chunks/1-1568ac60.js","./components/error.svelte-999441bb.js","./chunks/index-a17c58e1.js","./chunks/singletons-34f1d235.js"] : void 0, import.meta.url),
|
() => __vitePreload(() => import("./chunks/1-1568ac60.js"), true ? ["./chunks/1-1568ac60.js","./components/error.svelte-999441bb.js","./chunks/index-a17c58e1.js","./chunks/singletons-34f1d235.js"] : void 0, import.meta.url),
|
||||||
() => __vitePreload(() => import("./chunks/2-310303a7.js"), true ? ["./chunks/2-310303a7.js","./components/pages/_page.svelte-88028a45.js","./chunks/index-a17c58e1.js"] : void 0, import.meta.url)
|
() => __vitePreload(() => import("./chunks/2-b698cb67.js"), true ? ["./chunks/2-b698cb67.js","./components/pages/_page.svelte-d76d2d10.js","./chunks/index-a17c58e1.js"] : void 0, import.meta.url)
|
||||||
];
|
];
|
||||||
const server_loads = [];
|
const server_loads = [];
|
||||||
const dictionary = {
|
const dictionary = {
|
|
@ -1 +1 @@
|
||||||
{"version":"1676165858403"}
|
{"version":"1676218342282"}
|
50
index.html
50
index.html
|
@ -5,14 +5,14 @@
|
||||||
<link rel="icon" href="./favicon.png" />
|
<link rel="icon" href="./favicon.png" />
|
||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width" />
|
||||||
<meta http-equiv="content-security-policy" content="">
|
<meta http-equiv="content-security-policy" content="">
|
||||||
<link href="./_app/immutable/assets/_layout-9d8a13a9.css" rel="stylesheet">
|
<link href="./_app/immutable/assets/_layout-9214de11.css" rel="stylesheet">
|
||||||
<link rel="modulepreload" href="./_app/immutable/start-ba43d41e.js">
|
<link rel="modulepreload" href="./_app/immutable/start-27d3d93e.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/index-a17c58e1.js">
|
<link rel="modulepreload" href="./_app/immutable/chunks/index-a17c58e1.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/singletons-34f1d235.js">
|
<link rel="modulepreload" href="./_app/immutable/chunks/singletons-34f1d235.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/components/pages/_layout.svelte-5dd9ec09.js">
|
<link rel="modulepreload" href="./_app/immutable/components/pages/_layout.svelte-24448b68.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/modules/pages/_layout.js-822fcae8.js">
|
<link rel="modulepreload" href="./_app/immutable/modules/pages/_layout.js-d7f033d4.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/_layout-eb571bbb.js">
|
<link rel="modulepreload" href="./_app/immutable/chunks/_layout-7c48fe5f.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/components/pages/_page.svelte-88028a45.js"><title>Web3Privacy Prague 2023 | Monday, 5. June 2023</title><!-- HEAD_svelte-a0ctph_START --><!-- HEAD_svelte-a0ctph_END -->
|
<link rel="modulepreload" href="./_app/immutable/components/pages/_page.svelte-d76d2d10.js"><title>Web3Privacy Prague 2023 | Monday, 5. June 2023</title><!-- HEAD_svelte-17f38t8_START --><!-- HEAD_svelte-17f38t8_END -->
|
||||||
</head>
|
</head>
|
||||||
<body data-sveltekit-preload-data="hover">
|
<body data-sveltekit-preload-data="hover">
|
||||||
<div style="display: contents">
|
<div style="display: contents">
|
||||||
|
@ -21,15 +21,15 @@
|
||||||
<div class="relative w-full min-h-screen text-white"><div class="fixed w-full h-18 bg-black pt-6 md:pt-2 pb-2"><div class="middle-pane-big bg-black"><div class="flex"><div class="flex items-center gap-4 grow"><div class="w-20"><a href="https://web3privacy.info"><img src="/web3privacy.png"></a></div>
|
<div class="relative w-full min-h-screen text-white"><div class="fixed w-full h-18 bg-black pt-6 md:pt-2 pb-2"><div class="middle-pane-big bg-black"><div class="flex"><div class="flex items-center gap-4 grow"><div class="w-20"><a href="https://web3privacy.info"><img src="/web3privacy.png"></a></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-center gap-6 uppercase text-xl"><div><a href="#about">About</a></div><div><a href="#speakers">Speakers</a></div><div><a href="#program">Program</a></div><div><a href="#sponsors">Sponsors</a></div><div class="button"><a href="#ticket">Ticket</a></div></div></div></div></div>
|
<div class="flex items-center gap-6 uppercase text-xl"><div><a href="#about">About</a></div><div><a href="#speakers">Speakers</a></div><div><a href="#program">Program</a></div><div><a href="#sponsors">Sponsors</a></div><div class="button"><a href="#ticket">Ticket</a></div></div></div></div></div>
|
||||||
<div class="w-full h-screen"><div class="w-full h-full flex items-center text-center"><div class="mx-auto"><div class="text-5xl md:text-8xl font-bold uppercase mb-4 md:mb-8">Web3Privacy Summit</div>
|
<div class="w-full h-screen"><div class="w-full h-full flex items-center text-center"><div class="mx-auto"><div class="text-5xl md:text-8xl font-bold uppercase mb-4 md:mb-8">Web3Privacy Summit #1</div>
|
||||||
<div class="text-3xl md:text-5xl md:mb-4">Monday, 5. June 2023</div>
|
<div class="text-3xl md:text-5xl md:mb-4">Monday, 5. June 2023</div>
|
||||||
<div class="text-3xl md:text-5xl">X10, Prague</div>
|
<div class="text-3xl md:text-5xl uppercase">X10, Prague</div>
|
||||||
<div class="mt-8 text-lg text-mild mx-4"><p>Diving into the culture of the Web3 privacy industry</p>
|
<div class="mt-8 text-lg text-mild mx-4"><p>Diving into the culture of the Web3 privacy industry</p>
|
||||||
<p><a href="https://prgblockweek.com" class="underline hover:no-underline external external-mild">Prague Blockchain Week 2023</a></p></div></div></div></div>
|
<p><a href="https://prgblockweek.com" target="_blank" class="underline hover:no-underline external external-mild">Prague Blockchain Week 2023</a></p></div></div></div></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="bg-black" id="about"><div class="middle-pane-medium pb-16 text-xl text-center mx-auto"><div class="py-16 md:py-32 md:w-1/2 mx-auto markdown"><p>We need to protect our privacy, and that's why we're coming together on June 5 to Prague to sit down and discuss different aspects of privacy in the Web3 industry - how we can help shape it and make it more accessible - building a shared culture. Conference was created to complement the <a href="http://web3privacy.info/">Web3Privacy Now</a> research project.</p></div>
|
<div class="bg-black" id="about"><div class="middle-pane-medium pb-16 text-xl text-center mx-auto"><div class="py-16 md:py-32 md:w-1/2 mx-auto markdown"><p>We need to protect our privacy, and that's why we're coming together on June 5 to Prague to sit down and discuss different aspects of privacy in the Web3 industry - how we can help shape it and make it more accessible - building a shared culture. The conference complements the research project <a href="http://web3privacy.info/">Web3Privacy Now</a> and was created by joining forces with the production team of the privacy hackathon <a href="https://ethbrno.cz/">ETHBrno</a>.</p></div>
|
||||||
<div class="section-header">Key themes</div>
|
<div class="section-header">Key themes</div>
|
||||||
<div class="grid md:grid-cols-3 gap-4 md:gap-10"><div class="bg-[#0d1117] hover:text-black hover:bg-white px-4 py-6"><div class="text-2xl uppercase">Human rights DAOs (pro-privacy)</div>
|
<div class="grid md:grid-cols-3 gap-4 md:gap-10"><div class="bg-[#0d1117] hover:text-black hover:bg-white px-4 py-6"><div class="text-2xl uppercase">Human rights DAOs (pro-privacy)</div>
|
||||||
<div class="mt-4 text-lg markdown"></div>
|
<div class="mt-4 text-lg markdown"></div>
|
||||||
|
@ -62,6 +62,15 @@
|
||||||
<div class="" id="speakers"><div class="middle-pane-medium pt-16 text-xl text-center mx-auto"><div class="section-header">Speakers</div>
|
<div class="" id="speakers"><div class="middle-pane-medium pt-16 text-xl text-center mx-auto"><div class="section-header">Speakers</div>
|
||||||
<div class="pb-16 text-mild">To-be-announced</div></div></div>
|
<div class="pb-16 text-mild">To-be-announced</div></div></div>
|
||||||
|
|
||||||
|
<div class="" id="hosts"><div class="middle-pane-medium pt-16 text-xl text-center mx-auto"><div class="section-header">Hosts</div>
|
||||||
|
<div class="mx-auto sm:w-1/3"><div class="pb-16 grid grid-cols-2 gap-4 sm:gap-10"><div><div><a href="https://twitter.com/nicksvyaznoy"><img src="/people/mykola.png" class="grayscale hover:grayscale-0"></a></div>
|
||||||
|
<div class="mt-4">Mykola Siusko</div>
|
||||||
|
<div class="text-base text-mild"><a href="https://twitter.com/nicksvyaznoy" class="hover:underline">@nicksvyaznoy</a></div>
|
||||||
|
</div><div><div><a href="https://twitter.com/treecz"><img src="/people/tree.jpeg" class="grayscale hover:grayscale-0"></a></div>
|
||||||
|
<div class="mt-4">Tree</div>
|
||||||
|
<div class="text-base text-mild"><a href="https://twitter.com/treecz" class="hover:underline">@treecz</a></div>
|
||||||
|
</div></div></div></div></div>
|
||||||
|
|
||||||
<div class="bg-black" id="program"><div class="middle-pane-medium pt-16 text-xl text-center mx-auto pb-32"><div class="section-header">Program</div>
|
<div class="bg-black" id="program"><div class="middle-pane-medium pt-16 text-xl text-center mx-auto pb-32"><div class="section-header">Program</div>
|
||||||
<table class="table-auto table-custom w-full mx-0 lg:mx-8"><thead><tr><th class="text-right">time</th>
|
<table class="table-auto table-custom w-full mx-0 lg:mx-8"><thead><tr><th class="text-right">time</th>
|
||||||
<th class="text-left">topic</th></tr></thead>
|
<th class="text-left">topic</th></tr></thead>
|
||||||
|
@ -109,17 +118,19 @@
|
||||||
<div><a href="https://matrix.to/#/@tree:gwei.cz" target="_blank"><button class="py-2 px-5 bg-white text-black hover:bg-black border border-bg-white hover:text-white">Become a Sponsor</button></a></div></div></div>
|
<div><a href="https://matrix.to/#/@tree:gwei.cz" target="_blank"><button class="py-2 px-5 bg-white text-black hover:bg-black border border-bg-white hover:text-white">Become a Sponsor</button></a></div></div></div>
|
||||||
|
|
||||||
<div class="bg-black" id="ticket"><div class="middle-pane-medium pt-16 text-xl text-center mx-auto pb-32"><div class="section-header">Ticket</div>
|
<div class="bg-black" id="ticket"><div class="middle-pane-medium pt-16 text-xl text-center mx-auto pb-32"><div class="section-header">Ticket</div>
|
||||||
<div class="grid lg:grid-cols-2 gap-10 md:w-2/3 mx-auto"><div class="bg-[#0d1117] hover:border-0 py-10 hover:text-black hover:bg-white px-10 cursor-pointer"><div class="text-3xl uppercase">All-day Access</div>
|
<div class="mb-8 text-lg text-mild">Be a part of the first Web3Privacy Summit experience…</div>
|
||||||
|
<div class="grid lg:grid-cols-2 gap-10 md:w-2/3 mx-auto"><div class="bg-[#0d1117] hover:border-0 py-10 px-10 "><div class="text-3xl uppercase">All-day Access</div>
|
||||||
<div class="text-xl mt-6">2350 CZK (~99 EUR)</div>
|
<div class="text-xl mt-6">2350 CZK (~99 EUR)</div>
|
||||||
<ul class="mt-6 text-lg text-left list-disc px-6"><li>All talks & panels</li><li>Coffee breaks</li><li>Buffet lunch</li><li>Networking drinks with speakers & attendees</li></ul>
|
<ul class="mt-6 text-lg text-left list-disc px-6"><li>All talks & panels</li><li>Coffee breaks</li><li>Buffet lunch</li><li>Networking drinks with speakers & attendees</li></ul>
|
||||||
|
|
||||||
|
|
||||||
</div><div class="bg-[#0d1117] hover:border-0 py-10 hover:text-black hover:bg-white px-10 cursor-pointer"><div class="text-3xl uppercase">#Lunarpunk Party</div>
|
</div><div class="bg-[#0d1117] hover:border-0 py-10 px-10 "><div class="text-3xl uppercase">#Lunarpunk Party</div>
|
||||||
<div class="text-xl mt-6">350 CZK (~15 EUR)</div>
|
<div class="text-xl mt-6">350 CZK (~15 EUR)</div>
|
||||||
<ul class="mt-6 text-lg text-left list-disc px-6"><li>8pm - morning</li><li>Prague rave from top DJs</li><li>VJs and projections</li><li>Networking with attendees, speakers & sponsors</li></ul>
|
<ul class="mt-6 text-lg text-left list-disc px-6"><li>8pm - morning</li><li>Prague rave from top DJs</li><li>VJs and projections</li><li>Networking with attendees, speakers & sponsors</li></ul>
|
||||||
|
|
||||||
<div class="mt-10 text-base">*Party access is included in the All-day Pass</div>
|
<div class="mt-10 text-base">*Party access is included in the All-day Pass</div>
|
||||||
</div></div></div></div>
|
</div></div>
|
||||||
|
<div class="mt-8 text-xl">Tickets will go on sale in early March 2023.</div></div></div>
|
||||||
|
|
||||||
<div class="mb-36" id="faq"><div class="middle-pane-medium pt-20 text-xl text-center mx-auto"><div class="section-header">FAQ</div>
|
<div class="mb-36" id="faq"><div class="middle-pane-medium pt-20 text-xl text-center mx-auto"><div class="section-header">FAQ</div>
|
||||||
<div class="grid md:grid-cols-2 gap-2 md:gap-10"><div class="py-10 px-4 hover:bg-white hover:text-black"><div class="text-2xl font-bold mb-6">Who is the event for?</div>
|
<div class="grid md:grid-cols-2 gap-2 md:gap-10"><div class="py-10 px-4 hover:bg-white hover:text-black"><div class="text-2xl font-bold mb-6">Who is the event for?</div>
|
||||||
|
@ -128,26 +139,25 @@
|
||||||
<div class="text-lg markdown"><p>Yes, we plan do both. Livestream of the whole conference and recordings of the lectures will be publicly available.</p></div>
|
<div class="text-lg markdown"><p>Yes, we plan do both. Livestream of the whole conference and recordings of the lectures will be publicly available.</p></div>
|
||||||
</div><div class="py-10 px-4 hover:bg-white hover:text-black"><div class="text-2xl font-bold mb-6">How do I get to the venue?</div>
|
</div><div class="py-10 px-4 hover:bg-white hover:text-black"><div class="text-2xl font-bold mb-6">How do I get to the venue?</div>
|
||||||
<div class="text-lg markdown"><p>Venue X10 (full name "<a href="https://divadlox10.cz">Divadlo X10</a>") is located in the centre of Prague near the metro station <em>Národní Třída</em> (Line B) and <em>Můstek</em> (Line A,C). The address is <a href="https://goo.gl/maps/Yh8qWagnqB1DvK676">Charvátova 10/39, Prague 1, 110 00</a> (<a href="https://goo.gl/maps/Yh8qWagnqB1DvK676">Google Maps</a>).</p></div>
|
<div class="text-lg markdown"><p>Venue X10 (full name "<a href="https://divadlox10.cz">Divadlo X10</a>") is located in the centre of Prague near the metro station <em>Národní Třída</em> (Line B) and <em>Můstek</em> (Line A,C). The address is <a href="https://goo.gl/maps/Yh8qWagnqB1DvK676">Charvátova 10/39, Prague 1, 110 00</a> (<a href="https://goo.gl/maps/Yh8qWagnqB1DvK676">Google Maps</a>).</p></div>
|
||||||
</div><div class="py-10 px-4 hover:bg-white hover:text-black"><div class="text-2xl font-bold mb-6">Will there be any food or drink?</div>
|
|
||||||
<div class="text-lg markdown"><p>We don't know, but we'll do our best. This unfortunately depends on the sponsors.</p></div>
|
|
||||||
</div></div></div></div>
|
</div></div></div></div>
|
||||||
|
|
||||||
<footer class="pb-16 bg-black"><div class="middle-pane-big pt-6 mx-auto"><div class="flex items-center"><div class="grow"><div class="w-48"><a href="https://web3privacy.info"><img src="/web3privacy.png"></a></div></div>
|
<footer class="pb-16 bg-black"><div class="middle-pane-big pt-6 mx-auto"><div class="flex items-center"><div class="grow"><div class="w-48"><a href="https://web3privacy.info"><img src="/web3privacy.png"></a></div></div>
|
||||||
<div class="text-right"><div class=""><a class="inline-block w-5 mr-1" href="https://twitter.com/web3privacy"><svg viewBox="0 0 29 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M28.0266 3.12733C26.9955 3.62938 25.8872 3.96853 24.7242 4.12112C25.9113 3.34005 26.8231 2.10325 27.2524 0.629411C26.1413 1.35279 24.9107 1.87791 23.6009 2.16092C22.5522 0.934264 21.0578 0.167969 19.4039 0.167969C16.2285 0.167969 13.6538 2.99367 13.6538 6.47907C13.6538 6.97373 13.7047 7.45548 13.8028 7.91738C9.02398 7.6542 4.78719 5.14151 1.95117 1.3231C1.45622 2.25521 1.17259 3.33929 1.17259 4.49596C1.17259 6.68564 2.18771 8.61738 3.73058 9.74913C2.78804 9.71637 1.90142 9.43244 1.1262 8.95977C1.12555 8.98607 1.12555 9.01252 1.12555 9.03913C1.12555 12.0969 3.1076 14.6476 5.73804 15.2278C5.25556 15.3721 4.74758 15.4491 4.2232 15.4491C3.85268 15.4491 3.49255 15.4095 3.14137 15.3359C3.87315 17.8432 5.99658 19.6679 8.51282 19.7187C6.54493 21.4115 4.06569 22.4206 1.37163 22.4206C0.907503 22.4206 0.449828 22.3906 0 22.3323C2.54468 24.1231 5.56708 25.168 8.81424 25.168C19.3905 25.168 25.1742 15.5511 25.1742 7.21076C25.1742 6.93712 25.1686 6.66503 25.1576 6.39416C26.2809 5.50451 27.2556 4.39306 28.0265 3.12733H28.0266Z" fill="white"></path></svg></a>
|
<div class="text-right"><div class=""><a class="inline-block w-5 mr-1" href="https://twitter.com/web3privacy"><svg viewBox="0 0 29 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M28.0266 3.12733C26.9955 3.62938 25.8872 3.96853 24.7242 4.12112C25.9113 3.34005 26.8231 2.10325 27.2524 0.629411C26.1413 1.35279 24.9107 1.87791 23.6009 2.16092C22.5522 0.934264 21.0578 0.167969 19.4039 0.167969C16.2285 0.167969 13.6538 2.99367 13.6538 6.47907C13.6538 6.97373 13.7047 7.45548 13.8028 7.91738C9.02398 7.6542 4.78719 5.14151 1.95117 1.3231C1.45622 2.25521 1.17259 3.33929 1.17259 4.49596C1.17259 6.68564 2.18771 8.61738 3.73058 9.74913C2.78804 9.71637 1.90142 9.43244 1.1262 8.95977C1.12555 8.98607 1.12555 9.01252 1.12555 9.03913C1.12555 12.0969 3.1076 14.6476 5.73804 15.2278C5.25556 15.3721 4.74758 15.4491 4.2232 15.4491C3.85268 15.4491 3.49255 15.4095 3.14137 15.3359C3.87315 17.8432 5.99658 19.6679 8.51282 19.7187C6.54493 21.4115 4.06569 22.4206 1.37163 22.4206C0.907503 22.4206 0.449828 22.3906 0 22.3323C2.54468 24.1231 5.56708 25.168 8.81424 25.168C19.3905 25.168 25.1742 15.5511 25.1742 7.21076C25.1742 6.93712 25.1686 6.66503 25.1576 6.39416C26.2809 5.50451 27.2556 4.39306 28.0265 3.12733H28.0266Z" fill="white"></path></svg></a>
|
||||||
<a href="https://twitter.com/web3privacy" class="text-2xl no-underline hover:underline">@web3privacy
|
<a href="https://twitter.com/web3privacy" class="text-2xl no-underline hover:underline">@web3privacy
|
||||||
</a></div>
|
</a></div>
|
||||||
<div class="mt-4 text-mild">💛 Collaboration of <a href="https://web3privacy.info" class="external external-mild">Web3Privacy Now</a> & <a href="https://ethbrno.cz" class="external external-mild">ETHBrno</a> team
|
<div class="mt-4 text-mild">💛 Collaboration of <a href="https://web3privacy.info" class="external external-mild">Web3Privacy Now</a>
|
||||||
|
& <a href="https://ethbrno.cz" class="external external-mild">ETHBrno</a> team
|
||||||
</div></div></div></div></footer></div>
|
</div></div></div></div></footer></div>
|
||||||
|
|
||||||
|
|
||||||
<script type="module" data-sveltekit-hydrate="xvurv">
|
<script type="module" data-sveltekit-hydrate="bmuzlj">
|
||||||
import { start } from "./_app/immutable/start-ba43d41e.js";
|
import { start } from "./_app/immutable/start-27d3d93e.js";
|
||||||
|
|
||||||
start({
|
start({
|
||||||
assets: "",
|
assets: "",
|
||||||
env: {},
|
env: {},
|
||||||
target: document.querySelector('[data-sveltekit-hydrate="xvurv"]').parentNode,
|
target: document.querySelector('[data-sveltekit-hydrate="bmuzlj"]').parentNode,
|
||||||
version: "1676165858403",
|
version: "1676218342282",
|
||||||
hydrate: {
|
hydrate: {
|
||||||
node_ids: [0, 2],
|
node_ids: [0, 2],
|
||||||
data: [{type:"data",data:null,uses:{}},null],
|
data: [{type:"data",data:null,uses:{}},null],
|
||||||
|
|
BIN
people/mykola.png
Normal file
BIN
people/mykola.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 132 KiB |
BIN
people/tree.jpeg
Normal file
BIN
people/tree.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
Loading…
Reference in a new issue