mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
deploy: 41e1a36d7d
This commit is contained in:
parent
0562484573
commit
20327dddec
8 changed files with 31 additions and 27 deletions
|
@ -1,5 +1,5 @@
|
||||||
import { _ } from "./_layout-3639a6b7.js";
|
import { _ } from "./_layout-2fe10c7c.js";
|
||||||
import { default as default2 } from "../components/pages/_layout.svelte-55dbaecd.js";
|
import { default as default2 } from "../components/pages/_layout.svelte-ad32e327.js";
|
||||||
export {
|
export {
|
||||||
default2 as component,
|
default2 as component,
|
||||||
_ as universal
|
_ as universal
|
|
@ -613,8 +613,12 @@ const data = {
|
||||||
badgesApiUrl: "https://badges-pretix-voucher-api.web3privacy.info"
|
badgesApiUrl: "https://badges-pretix-voucher-api.web3privacy.info"
|
||||||
};
|
};
|
||||||
async function load({ params, url, fetch }) {
|
async function load({ params, url, fetch }) {
|
||||||
const resp = await fetch(data.badgesApiUrl + "/badges");
|
let resp;
|
||||||
const badges = await resp.json();
|
try {
|
||||||
|
resp = await fetch(data.badgesApiUrl + "/badges");
|
||||||
|
} catch {
|
||||||
|
}
|
||||||
|
const badges = resp ? await resp.json() : [];
|
||||||
return {
|
return {
|
||||||
config: data,
|
config: data,
|
||||||
badges
|
badges
|
|
@ -569,7 +569,7 @@ function create_fragment(ctx) {
|
||||||
a2 = element("a");
|
a2 = element("a");
|
||||||
button1 = element("button");
|
button1 = element("button");
|
||||||
div11 = element("div");
|
div11 = element("div");
|
||||||
t15 = text("Buy Ticket");
|
t15 = text("Watch recorded talks");
|
||||||
t16 = space();
|
t16 = space();
|
||||||
if (default_slot)
|
if (default_slot)
|
||||||
default_slot.c();
|
default_slot.c();
|
||||||
|
@ -702,7 +702,7 @@ function create_fragment(ctx) {
|
||||||
var button1_nodes = children(button1);
|
var button1_nodes = children(button1);
|
||||||
div11 = claim_element(button1_nodes, "DIV", { class: true });
|
div11 = claim_element(button1_nodes, "DIV", { class: true });
|
||||||
var div11_nodes = children(div11);
|
var div11_nodes = children(div11);
|
||||||
t15 = claim_text(div11_nodes, "Buy Ticket");
|
t15 = claim_text(div11_nodes, "Watch recorded talks");
|
||||||
div11_nodes.forEach(detach);
|
div11_nodes.forEach(detach);
|
||||||
button1_nodes.forEach(detach);
|
button1_nodes.forEach(detach);
|
||||||
a2_nodes.forEach(detach);
|
a2_nodes.forEach(detach);
|
||||||
|
@ -816,7 +816,7 @@ function create_fragment(ctx) {
|
||||||
attr(div10, "class", "px-6 py-2.5 inline-block font-medium");
|
attr(div10, "class", "px-6 py-2.5 inline-block font-medium");
|
||||||
attr(div11, "class", "m-1 button-inverse");
|
attr(div11, "class", "m-1 button-inverse");
|
||||||
attr(button1, "class", "uppercase text-lg w-full");
|
attr(button1, "class", "uppercase text-lg w-full");
|
||||||
attr(a2, "href", "/#ticket");
|
attr(a2, "href", "https://watch.web3privacy.info/");
|
||||||
attr(div12, "class", "inline-block w-full md:w-auto");
|
attr(div12, "class", "inline-block w-full md:w-auto");
|
||||||
attr(div13, "class", "inline-block bg-white text-black font-medium md:w-auto w-3/4");
|
attr(div13, "class", "inline-block bg-white text-black font-medium md:w-auto w-3/4");
|
||||||
attr(div14, "class", "mt-14 text-lg md:text-xl uppercase");
|
attr(div14, "class", "mt-14 text-lg md:text-xl uppercase");
|
||||||
|
@ -956,7 +956,6 @@ function create_fragment(ctx) {
|
||||||
),
|
),
|
||||||
listen(div8, "mouseenter", animateText),
|
listen(div8, "mouseenter", animateText),
|
||||||
listen(div11, "mouseenter", animateText),
|
listen(div11, "mouseenter", animateText),
|
||||||
listen(a2, "click", handleAnchorClick),
|
|
||||||
listen(div23, "mouseenter", animateSection())
|
listen(div23, "mouseenter", animateSection())
|
||||||
];
|
];
|
||||||
mounted = true;
|
mounted = true;
|
||||||
|
@ -1173,9 +1172,10 @@ function instance($$self, $$props, $$invalidate) {
|
||||||
external: true
|
external: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Ticket",
|
title: "Watch Talks",
|
||||||
url: "#ticket",
|
url: "https://watch.web3privacy.info/",
|
||||||
class: "button"
|
class: "button",
|
||||||
|
external: true
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
const homepageAnimation = () => {
|
const homepageAnimation = () => {
|
|
@ -1,4 +0,0 @@
|
||||||
import { l } from "../../chunks/_layout-3639a6b7.js";
|
|
||||||
export {
|
|
||||||
l as load
|
|
||||||
};
|
|
4
_app/immutable/modules/pages/_layout.js-e233778a.js
Normal file
4
_app/immutable/modules/pages/_layout.js-e233778a.js
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
import { l } from "../../chunks/_layout-2fe10c7c.js";
|
||||||
|
export {
|
||||||
|
l as load
|
||||||
|
};
|
|
@ -857,7 +857,7 @@ class Root extends SvelteComponent {
|
||||||
}
|
}
|
||||||
const matchers = {};
|
const matchers = {};
|
||||||
const nodes = [
|
const nodes = [
|
||||||
() => __vitePreload(() => import("./chunks/0-6adfa5be.js"), true ? ["./chunks/0-6adfa5be.js","./chunks/_layout-3639a6b7.js","./components/pages/_layout.svelte-55dbaecd.js","./chunks/index-2a025a89.js","./chunks/helpers-88229792.js","./assets/_layout-4b7bc54a.css"] : void 0, import.meta.url),
|
() => __vitePreload(() => import("./chunks/0-3480aa0d.js"), true ? ["./chunks/0-3480aa0d.js","./chunks/_layout-2fe10c7c.js","./components/pages/_layout.svelte-ad32e327.js","./chunks/index-2a025a89.js","./chunks/helpers-88229792.js","./assets/_layout-4b7bc54a.css"] : void 0, import.meta.url),
|
||||||
() => __vitePreload(() => import("./chunks/1-1b14460c.js"), true ? ["./chunks/1-1b14460c.js","./components/error.svelte-67e543b8.js","./chunks/index-2a025a89.js","./chunks/singletons-286ffebd.js"] : void 0, import.meta.url),
|
() => __vitePreload(() => import("./chunks/1-1b14460c.js"), true ? ["./chunks/1-1b14460c.js","./components/error.svelte-67e543b8.js","./chunks/index-2a025a89.js","./chunks/singletons-286ffebd.js"] : void 0, import.meta.url),
|
||||||
() => __vitePreload(() => import("./chunks/2-ffb545dc.js"), true ? ["./chunks/2-ffb545dc.js","./chunks/_page-64f9c4c9.js","./chunks/index-2a025a89.js","./chunks/helpers-88229792.js","./chunks/singletons-286ffebd.js","./chunks/preload-helper-f8376bb0.js"] : void 0, import.meta.url)
|
() => __vitePreload(() => import("./chunks/2-ffb545dc.js"), true ? ["./chunks/2-ffb545dc.js","./chunks/_page-64f9c4c9.js","./chunks/index-2a025a89.js","./chunks/helpers-88229792.js","./chunks/singletons-286ffebd.js","./chunks/preload-helper-f8376bb0.js"] : void 0, import.meta.url)
|
||||||
];
|
];
|
|
@ -1 +1 @@
|
||||||
{"version":"1686876650317"}
|
{"version":"1695981229915"}
|
20
index.html
20
index.html
|
@ -7,14 +7,14 @@
|
||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#000000" />
|
||||||
<meta http-equiv="content-security-policy" content="">
|
<meta http-equiv="content-security-policy" content="">
|
||||||
<link href="./_app/immutable/assets/_layout-4b7bc54a.css" rel="stylesheet">
|
<link href="./_app/immutable/assets/_layout-4b7bc54a.css" rel="stylesheet">
|
||||||
<link rel="modulepreload" href="./_app/immutable/start-2795cdb2.js">
|
<link rel="modulepreload" href="./_app/immutable/start-e72f44ce.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/index-2a025a89.js">
|
<link rel="modulepreload" href="./_app/immutable/chunks/index-2a025a89.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/singletons-286ffebd.js">
|
<link rel="modulepreload" href="./_app/immutable/chunks/singletons-286ffebd.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/preload-helper-f8376bb0.js">
|
<link rel="modulepreload" href="./_app/immutable/chunks/preload-helper-f8376bb0.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/components/pages/_layout.svelte-55dbaecd.js">
|
<link rel="modulepreload" href="./_app/immutable/components/pages/_layout.svelte-ad32e327.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/helpers-88229792.js">
|
<link rel="modulepreload" href="./_app/immutable/chunks/helpers-88229792.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/modules/pages/_layout.js-c3270665.js">
|
<link rel="modulepreload" href="./_app/immutable/modules/pages/_layout.js-e233778a.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/_layout-3639a6b7.js">
|
<link rel="modulepreload" href="./_app/immutable/chunks/_layout-2fe10c7c.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/components/pages/_page.svelte-b1d399f8.js">
|
<link rel="modulepreload" href="./_app/immutable/components/pages/_page.svelte-b1d399f8.js">
|
||||||
<link rel="modulepreload" href="./_app/immutable/chunks/_page-64f9c4c9.js"><title>Web3Privacy Prague 2023 | 5. June 2023</title><!-- HEAD_svelte-z1gllm_START --><meta name="description" content="June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research."><meta name="twitter:card" content="summary"><meta name="twitter:site" content="@web3privacy"><meta name="twitter:title" content="Web3Privacy Prague 2023"><meta name="twitter:description" content="June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research."><meta name="twitter:image" content="https://prague.web3privacy.info/banner-square.png"><meta name="og:url" content="https://prague.web3privacy.info"><meta name="og:title" content="Web3Privacy Prague 2023"><meta name="og:description" content="June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research."><meta name="og:image" content="https://prague.web3privacy.info/banner-square.png"><!-- HEAD_svelte-z1gllm_END -->
|
<link rel="modulepreload" href="./_app/immutable/chunks/_page-64f9c4c9.js"><title>Web3Privacy Prague 2023 | 5. June 2023</title><!-- HEAD_svelte-z1gllm_START --><meta name="description" content="June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research."><meta name="twitter:card" content="summary"><meta name="twitter:site" content="@web3privacy"><meta name="twitter:title" content="Web3Privacy Prague 2023"><meta name="twitter:description" content="June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research."><meta name="twitter:image" content="https://prague.web3privacy.info/banner-square.png"><meta name="og:url" content="https://prague.web3privacy.info"><meta name="og:title" content="Web3Privacy Prague 2023"><meta name="og:description" content="June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research."><meta name="og:image" content="https://prague.web3privacy.info/banner-square.png"><!-- HEAD_svelte-z1gllm_END -->
|
||||||
</head>
|
</head>
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
</div><div class="hidden lg:block"><a class="hover:underline null " href="#faq" target="">FAQ</a>
|
</div><div class="hidden lg:block"><a class="hover:underline null " href="#faq" target="">FAQ</a>
|
||||||
</div><div class="hidden lg:block"><a class="hover:underline null external mi-img" href="https://matrix.to/#/#web3privacy:gwei.cz" target="_blank"><div class="ico-matrix"><div class="ico-children"></div></div></a>
|
</div><div class="hidden lg:block"><a class="hover:underline null external mi-img" href="https://matrix.to/#/#web3privacy:gwei.cz" target="_blank"><div class="ico-matrix"><div class="ico-children"></div></div></a>
|
||||||
</div><div class="hidden lg:block"><a class="hover:underline null external mi-img" href="https://twitter.com/web3privacy" target="_blank"><div class="ico-twitter"><div class="ico-children"></div></div></a>
|
</div><div class="hidden lg:block"><a class="hover:underline null external mi-img" href="https://twitter.com/web3privacy" target="_blank"><div class="ico-twitter"><div class="ico-children"></div></div></a>
|
||||||
</div><div class="hidden lg:block"><a class="button null " href="#ticket" target="">TICKET</a>
|
</div><div class="hidden lg:block"><a class="button null external " href="https://watch.web3privacy.info/" target="_blank">WATCH TALKS</a>
|
||||||
</div></div></div></div>
|
</div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="header-shade"></div></div>
|
<div id="header-shade"></div></div>
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
<p></p></div>
|
<p></p></div>
|
||||||
<div class="mt-14 text-lg md:text-xl uppercase"><div class="inline-block bg-white text-black font-medium md:w-auto w-3/4"><div class="px-6 py-2.5 inline-block font-medium"><span class="font-medium block sm:inline-block">5. June 2023</span> AT
|
<div class="mt-14 text-lg md:text-xl uppercase"><div class="inline-block bg-white text-black font-medium md:w-auto w-3/4"><div class="px-6 py-2.5 inline-block font-medium"><span class="font-medium block sm:inline-block">5. June 2023</span> AT
|
||||||
<a href="https://goo.gl/maps/VCSC7wcNueEKgt996" target="_blank" class="underline hover:no-underline font-medium">X10, Prague</a></div>
|
<a href="https://goo.gl/maps/VCSC7wcNueEKgt996" target="_blank" class="underline hover:no-underline font-medium">X10, Prague</a></div>
|
||||||
<div class="inline-block w-full md:w-auto"><a href="/#ticket"><button class="uppercase text-lg w-full"><div class="m-1 button-inverse">Buy Ticket
|
<div class="inline-block w-full md:w-auto"><a href="https://watch.web3privacy.info/"><button class="uppercase text-lg w-full"><div class="m-1 button-inverse">Watch recorded talks
|
||||||
</div></button></a></div></div></div></div></div></div>
|
</div></button></a></div></div></div></div></div></div>
|
||||||
|
|
||||||
|
|
||||||
|
@ -528,14 +528,14 @@
|
||||||
<div class="mt-4 text-sm text-supermild text-right"><p>This web is built with <a href="https://kit.svelte.dev/">SvelteKit</a> and is <a href="https://github.com/web3privacy/w3ps1">open-source</a> under CC0 license</p></div></div></footer></div>
|
<div class="mt-4 text-sm text-supermild text-right"><p>This web is built with <a href="https://kit.svelte.dev/">SvelteKit</a> and is <a href="https://github.com/web3privacy/w3ps1">open-source</a> under CC0 license</p></div></div></footer></div>
|
||||||
|
|
||||||
|
|
||||||
<script type="module" data-sveltekit-hydrate="uk99j2">
|
<script type="module" data-sveltekit-hydrate="1r2c38b">
|
||||||
import { start } from "./_app/immutable/start-2795cdb2.js";
|
import { start } from "./_app/immutable/start-e72f44ce.js";
|
||||||
|
|
||||||
start({
|
start({
|
||||||
assets: "",
|
assets: "",
|
||||||
env: {},
|
env: {},
|
||||||
target: document.querySelector('[data-sveltekit-hydrate="uk99j2"]').parentNode,
|
target: document.querySelector('[data-sveltekit-hydrate="1r2c38b"]').parentNode,
|
||||||
version: "1686876650317",
|
version: "1695981229915",
|
||||||
hydrate: {
|
hydrate: {
|
||||||
node_ids: [0, 2],
|
node_ids: [0, 2],
|
||||||
data: [{type:"data",data:null,uses:{}},null],
|
data: [{type:"data",data:null,uses:{}},null],
|
||||||
|
|
Loading…
Reference in a new issue