diff --git a/package-lock.json b/package-lock.json index 9cd655a..f31e779 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,6 +24,39 @@ "js-tokens": "^4.0.0" } }, + "@beyonk/svelte-carousel": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@beyonk/svelte-carousel/-/svelte-carousel-2.8.0.tgz", + "integrity": "sha512-kWObh9XqI7tfzltySmTZ0/ULE5MjLqd0jhsGhr+GnVfIkCOGwTHwQxzheLjC1dkBk0Z4wucLxBwUeSxqtGF9Ww==", + "dev": true, + "requires": { + "siema": "^1.5.1" + } + }, + "@fortawesome/fontawesome-common-types": { + "version": "0.2.30", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.30.tgz", + "integrity": "sha512-TsRwpTuKwFNiPhk1UfKgw7zNPeV5RhNp2Uw3pws+9gDAkPGKrtjR1y2lI3SYn7+YzyfuNknflpBA1LRKjt7hMg==", + "dev": true + }, + "@fortawesome/free-brands-svg-icons": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.14.0.tgz", + "integrity": "sha512-WsqPFTvJFI7MYkcy0jeFE2zY+blC4OrnB9MJOcn1NxRXT/sSfEEhrI7CwzIkiYajLiVDBKWeErYOvpsMeodmCQ==", + "dev": true, + "requires": { + "@fortawesome/fontawesome-common-types": "^0.2.30" + } + }, + "@fortawesome/free-solid-svg-icons": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.14.0.tgz", + "integrity": "sha512-M933RDM8cecaKMWDSk3FRYdnzWGW7kBBlGNGfvqLVwcwhUPNj9gcw+xZMrqBdRqxnSXdl3zWzTCNNGEtFUq67Q==", + "dev": true, + "requires": { + "@fortawesome/fontawesome-common-types": "^0.2.30" + } + }, "@polka/url": { "version": "1.0.0-next.7", "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.7.tgz", @@ -4650,6 +4683,12 @@ "integrity": "sha512-Imf4gH+8WQmT1GvxS/x79qpmfnE6m50hyN1ucatX+7oMCgmaF8obZWCPIzSUe6+P+YmXM46lkP2pxiV2/lt9Og==", "dev": true }, + "siema": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/siema/-/siema-1.5.1.tgz", + "integrity": "sha1-7/MSt36DQPpNgdXQU+u+uRE/+Ig=", + "dev": true + }, "signal-exit": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", @@ -5074,6 +5113,18 @@ "integrity": "sha1-fRh9tcbNu9ZNdaMvkbiZi94yc8M=", "dev": true }, + "svelte-fa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/svelte-fa/-/svelte-fa-2.1.1.tgz", + "integrity": "sha512-Oj563sJH0eLo6Pd1MsALgx5if9qKHtfCrMY5elMzggu00fP9zM47Vcv2b92g5vc+FNodxKPHhkUFTI8KK8CwGA==", + "dev": true + }, + "svelte-feather-icons": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/svelte-feather-icons/-/svelte-feather-icons-3.2.2.tgz", + "integrity": "sha512-GY86mGZYjZCRRnY2t5caiY+2gzSWrYvG8dUjhnOi6YlaWVZEAzDOBuTDiZ1abOz2mM9fCpdpbgj1JZajjzEEAw==", + "dev": true + }, "svelte-loader": { "version": "2.13.6", "resolved": "https://registry.npmjs.org/svelte-loader/-/svelte-loader-2.13.6.tgz", diff --git a/package.json b/package.json index e7b3fbd..b91a872 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,9 @@ "tinytime": "^0.2.6" }, "devDependencies": { + "@beyonk/svelte-carousel": "^2.8.0", + "@fortawesome/free-brands-svg-icons": "^5.14.0", + "@fortawesome/free-solid-svg-icons": "^5.14.0", "css-loader": "^3.2.0", "husky": "^3.0.9", "marked": "^0.3.19", @@ -34,6 +37,8 @@ "serve-handler": "^6.1.2", "style-loader": "^1.0.0", "svelte": "^3.0.0", + "svelte-fa": "^2.1.1", + "svelte-feather-icons": "^3.2.2", "svelte-loader": "^2.9.0", "webpack": "^4.7.0" } diff --git a/src/components/Nav.svelte b/src/components/Nav.svelte index 27c7629..f2e3ba2 100644 --- a/src/components/Nav.svelte +++ b/src/components/Nav.svelte @@ -43,9 +43,6 @@ } @media screen and (max-width: 900px) { - #about{ - display: none; - } .menu { font-size: 1.5rem; @@ -61,9 +58,6 @@ } @media screen and (max-width: 360px) { - #about{ - display: none; - } .menu { left: 0; right: 0; @@ -95,17 +89,14 @@
  • ~
  • -
  • - About -
  • - Blog + Ventures
  • - Resources + Community
  • - Earn + Blog
  • Space diff --git a/src/components/NewsLetter.svelte b/src/components/NewsLetter.svelte new file mode 100644 index 0000000..78cd80f --- /dev/null +++ b/src/components/NewsLetter.svelte @@ -0,0 +1,113 @@ + + + + +
    +

    Get involved!

    +

    + Reports & Updates are random but high quality, sign up for our newsletter! +

    + +
    diff --git a/src/components/SubscribeForm.svelte b/src/components/SubscribeForm.svelte deleted file mode 100644 index 980fc13..0000000 --- a/src/components/SubscribeForm.svelte +++ /dev/null @@ -1,188 +0,0 @@ - - - - -
    -

    Stay in touch

    -

    - We will notify you only about important -
    - things. -

    - - -

    - - -

    -
    diff --git a/src/routes/_index/PeepsMap.svelte b/src/routes/_index/PeepsMap.svelte new file mode 100644 index 0000000..431955d --- /dev/null +++ b/src/routes/_index/PeepsMap.svelte @@ -0,0 +1,148 @@ + + + + +
    +
    +

    + Click a Peep, +
    + Discover More +

    +
    \ No newline at end of file diff --git a/src/routes/_index/Projects.svelte b/src/routes/_index/Projects.svelte index 8ca8df0..eaa96be 100644 --- a/src/routes/_index/Projects.svelte +++ b/src/routes/_index/Projects.svelte @@ -1,68 +1,164 @@ + + + +
    -
    -

    Projects

    -

    Running on Leap Network

    -
    -
    -
    -

    - -
    - Deora - – decentralized quadratic voting solution for improved democracy. -
    - Deora website -

    + +
    +
    +

    Current Ventures

    +

    + By collaborating with unique projects we explore the wide range of + decentralised applications. Here are the projects already delivering + decentralized applications powered by LeapDAO: +

    +
    +
    +
    +
    + +
    +

    + + StatusPay + +

    +

    + Enables cryptocurrency-payments in retail stores or other non-remote + scenarios. The aim is to make purchases as easy and familiar as + tapping your card to a Point of Sales +

    +
    +
    +
    + +
    +

    + + EMO + +

    +

    + Project that allows developers to move computations done on some + abstract machine off-chain +

    +
    +
    +
    +
    +
    + +
    +

    + + WhiteRabbit + +

    +

    + Managing of movie-rights on-chain, enabling peer-to-peer + distribution and transactions for films. +

    +
    +
    +
    + +
    +

    + + Nervos Sidechain Framework + +

    +

    + Partnership with Nervos to build a sidechain framework. First version of + sidechain supported will be EVM based. +

    +
    +
    -
    -

    - -
    - Planet A - – "serious" social game that simulates Tragedy of the CO₂mmons from eco - perspective. -
    - Planet A game -

    -
    -
    +
    +
    +

    Our History

    +

    Projects that ran on Leap Network

    +
    +
    +
    +
    + +
    +

    + + Plasma Leap + +

    +

    + Our layer 2 network based on the plasma protocol for doing + off-chain transactions. +

    +
    +
    +
    + +
    +

    + + Volt Congress + +

    +

    + Was a pop-up democracy event held by Deora using Plasma Leap for + quadratic voting. +

    +
    -
    -
    -

    - -
    - Peep.cash - – burner wallet on Plasma with DAI support and fiat off-ramping without - KYC. -
    - Peep.cash web-app -

    -
    -
    -

    - -
    - Dungeon Riches - – dungeon runner game featuring battles based on rock-paper-scissors. -
    - Dungeon Riches game -

    -
    -
    +
    -
    -
    -

    - -
    - WhiteRabbit - – blockchain ecosystem for all transactions arising in film. -
    - WhiteRabbit website -

    +
    +
    +
    + +
    +

    + + SunDAI + +

    +

    + Was a pop-up economy running on the Leap Network connected to the + Ethereum mainnet DAI contract. +

    +
    +
    +
    + +
    +

    + + Planet A + +

    +

    + Was a serious social game created by Social Dist0rtion Protocol and + played at CCcamp and Ethberlin on the Leap Testnet. +

    +
    +
    -
    -
    + + +
    diff --git a/src/routes/_index/peeps.js b/src/routes/_index/peeps.js new file mode 100644 index 0000000..5a7ccb1 --- /dev/null +++ b/src/routes/_index/peeps.js @@ -0,0 +1,140 @@ +export const locations = { + berlin: [52.504043, 13.393236], + grandRap: [42.9632, -85.6679], + bratsk: [56.16667, 101.61667], + moscow: [55.75583, 37.61778], + ljubljana: [46.05, 14.51667], + vegas: [36.1699, -115.1398], + prague: [50.08861, 14.42139], + seva: [44.6054, 33.5221], + hochi: [10.8231, 106.6297], + hanover: [52.375, 9.7348], + travel: [5.9788, 116.0753], + hyderabad: [17.448157, 78.348948], + uyo: [7.93, 5.03], + kyiv: [50.4016, 30.2525], + minsk: [53.8845, 27.4532], + nairobi: [-1.289733, 36.8070], + }; + + export const peeps = [ + { + name: 'Alexander Lunyov', + avatar: 'https://avatars3.githubusercontent.com/u/1477583', + url: 'https://github.com/sunify', + location: locations.bratsk, + }, + { + name: 'Jan Kremser', + avatar: 'https://avatars1.githubusercontent.com/u/54618579', + url: 'https://github.com/TheReturnOfJan', + location: locations.ljubljana, + }, + { + name: 'Evgeni Shavkunov', + avatar: 'https://avatars3.githubusercontent.com/u/28968492', + url: 'https://github.com/eshavkun', + location: locations.prague, + }, + { + name: 'Kosta Korenkov', + avatar: 'https://avatars2.githubusercontent.com/u/163447', + url: 'https://github.com/troggy', + location: locations.moscow, + }, + { + name: 'johba', + avatar: 'https://avatars1.githubusercontent.com/u/659301', + url: 'https://github.com/johannbarbie', + location: locations.berlin, + }, + { + name: 'Pinkiebell', + avatar: 'https://avatars2.githubusercontent.com/u/40266861', + url: 'https://github.com/pinkiebell', + location: locations.hanover, + }, + { + name: 'Max Kuck', + avatar: 'https://avatars2.githubusercontent.com/u/45236782', + url: 'https://github.com/MaxKuck', + location: locations.berlin, + }, + { + name: 'Mwaa Joseph', + avatar: 'https://avatars3.githubusercontent.com/u/5112468', + url: 'https://github.com/mwaa', + location: locations.nairobi, + }, + { + name: 'Tim Daubenschütz', + avatar: 'https://avatars0.githubusercontent.com/u/2758453', + url: 'https://github.com/TimDaub', + location: locations.berlin, + }, + { + name: 'Keno Budde', + avatar: 'https://avatars2.githubusercontent.com/u/11144110', + url: 'https://github.com/Clearwood', + location: locations.berlin, + } + ]; + + + // Just incase + // { + // name: 'Vu Ngoc Quang', + // avatar: 'https://avatars2.githubusercontent.com/u/24425403', + // url: 'https://github.com/peara', + // location: locations.hochi, + // }, + // { + // name: 'Steven Pearce', + // avatar: 'https://avatars0.githubusercontent.com/u/36509712', + // url: 'https://github.com/StevenJNPearce' + // }, + // { + // name: 'Sounak Pradhan', + // avatar: 'https://avatars1.githubusercontent.com/u/22390515', + // url: 'https://github.com/sounak98' + // }, + // { + // name: 'Ola Kohut', + // avatar: 'https://avatars3.githubusercontent.com/u/4106590', + // url: 'https://github.com/kohola71' + // }, + // { + // name: 'nanspro', + // avatar: 'https://avatars0.githubusercontent.com/u/24641089', + // url: 'https://github.com/nanspro', + // location: locations.hyderabad, + // }, + // { + // name: 'Onuwa Nnachi Isaac', + // avatar: 'https://avatars1.githubusercontent.com/u/6551094', + // url: 'https://github.com/iamonuwa', + // location: locations.uyo, + // }, + // { + // name: 'Artico', + // avatar: 'https://avatars3.githubusercontent.com/u/1811630', + // url: 'https://github.com/articobandurini', + // location: locations.kyiv, + // }, + // { + // name: 'Maksim Daunarovich', + // avatar: 'https://avatars3.githubusercontent.com/u/3136647', + // url: 'https://github.com/MaxStalker', + // location: locations.minsk, + // }, + // { + // name: 'vrde', + // avatar: 'https://avatars1.githubusercontent.com/u/134680', + // url: 'https://github.com/vrde', + // location: locations.berlin, + // }, + // { + // name: 'Helge Wieding', + // avatar: 'https://avatars3.githubusercontent.com/u/754426', + // url: 'https://github.com/HelgeWieding' + // }, \ No newline at end of file diff --git a/src/routes/_layout.svelte b/src/routes/_layout.svelte index 66f4385..6ccc696 100644 --- a/src/routes/_layout.svelte +++ b/src/routes/_layout.svelte @@ -1,12 +1,14 @@ {#if segment !== 'interspace'} @@ -79,7 +81,10 @@ {#if segment !== '404'}
    - + +
    +

    © {year} LeapDAO

    +
    {/if}
    diff --git a/src/routes/index.svelte b/src/routes/index.svelte index d40cb3e..52b37bf 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -1,27 +1,22 @@ @@ -29,85 +24,92 @@ LeapDAO
    -
    -

    LeapDAO

    -

    Scaling for decentralized apps

    -

    - We're an open source community scaling blockchains on layer-2. -

    -
    - - - - - -
    +
    -

    Contribute

    +

    LeapDAO

    +

    Scaling for decentralized apps

    +

    + We work together to enable economic intimacy for communities and + net-citizens: +

    -

    Contribute code

    +

    Sovereignty

    - All our code is open-source and stored on - - GitHub - - . Check out repos, report bugs, find solutions, propose features. + Manage funds and make transparent decisions using on-chain reputation

    -

    Contribute support

    +

    More scalability

    - Our aim is to help others build their future. And we also need your - help for that. Join open Leap community! + Rollups and state channels connect your members at high speed and low + cost.

    -

    Get rewarded

    +

    Better UX

    +

    Enable frictionless on-boarding with a seamless user experience.

    +
    +
    +

    Global Community

    +

    Our community of leap peeps are located around the world

    +
    +
    +
    + + +
    +
    +

    We rethink networks

    +
    +

    + As a Decentralized Adaptive Organization, we combine Holacracy and + Decentralized Organizations to build a global, self-managing and + purpose-driven community. +

    +

    Need help build a more decentralized world? Get to know the open source community scaling blockchains on layer-2

    +
    +
    + +

    Join Us

    +

    + Become one with LeapDAO +

    +
    +
    + +

    Work with Us

    - We aim to reward any contribution to LeapDAO using bounties, salaries - and hourly-based compensation. + Leap into partnership

    +
    +
    - -
    - -

    Get involved!

    -

    - As an open-source software community, Leap thrives from the efforts of its - members. Whatever your interests and skills are, there is ample opportunity - to make the life of Dapps better! -

    -
    - - -
    -
    -
    - Contributions chart
    diff --git a/src/routes/ventures.svelte b/src/routes/ventures.svelte new file mode 100644 index 0000000..88364fb --- /dev/null +++ b/src/routes/ventures.svelte @@ -0,0 +1,207 @@ + + + + +
    +
    +

    We work to deliver solutions that enable a more decentralized web

    +
    +
    + +
    + Gain sovereignty +
    + Custom gas economies shield you from fluctuation of the base layer +
    +
    + Scale instantly +
    + Rollups and state channels give you virtually unlimited throughput +
    +
    + Master onboarding +
    + Seamless user experience enables frictionless on-boarding +
    +
    +
    + + + Request a Demo + +
    +
    +
    +

    The Why

    +

    + The centralization of the web into the hands of a few tech giants + threatens the freedom of individuals and the survival of democracy. +
    + LeapDAO seeks to sustainably decentralize power by enabling web-citizens + to own their data and communities to flourish and govern themselves. We do + so by providing them with scalable decentralized infrastructure and + applications. +

    + +
    + +
    +

    What we offer to the open web

    +
    +

    + Stress-tested under real-world circumstances & approved by real people + we are providing the tech & the knowledge to build a better web. +

    +
    +
    +
    + +

    Scaling Playgrounds

    +

    + Get your own customized environment to test your transaction through put +

    +
    +
    + +

    Strategic Consulting

    +

    + Give your business the support and expertise it deserves +

    +
    +
    + +

    Blockchain Engineering

    +

    + Get the power team you need to release trusted products +

    +
    +
    +
    +
    + +

    Token Economy Blueprints

    +

    + Get an evaluation on best release plan for your products +

    +
    +
    + +

    Security Audits

    +

    + Give your products a second look to safe guard your assets +

    +
    +
    + +

    Governance Solutions

    +

    + Get to decentralize your products with our voting protocols +

    +
    +
    +
    + + + +
    +

    So Long, and Thanks for All the Fish

    +
    +
    +
      +
    • 🎉 always keep onboarding
    • +
    • 💪 never compromise security for scalability
    • +
    • 🚀 launch fast, iterate quickly
    • +
    +
    + + + Get In Touch + +
    +
    +
    diff --git a/static/global.css b/static/global.css index afee8c3..4be7099 100644 --- a/static/global.css +++ b/static/global.css @@ -477,10 +477,6 @@ input:focus { margin-top: 0; } -.projects img { - width: 140px; -} - @media screen and (max-width: 900px) { .section header h2 { font-size: 4rem; diff --git a/static/img/logo-burner.png b/static/img/logo-burner.png index b33a0d9..dd5abb5 100644 Binary files a/static/img/logo-burner.png and b/static/img/logo-burner.png differ diff --git a/static/img/logo-emo.png b/static/img/logo-emo.png new file mode 100644 index 0000000..7a53443 Binary files /dev/null and b/static/img/logo-emo.png differ diff --git a/static/img/logo-leap.png b/static/img/logo-leap.png new file mode 100644 index 0000000..e36c54d Binary files /dev/null and b/static/img/logo-leap.png differ diff --git a/static/img/logo-nervos.png b/static/img/logo-nervos.png new file mode 100644 index 0000000..83310a2 Binary files /dev/null and b/static/img/logo-nervos.png differ diff --git a/static/img/logo-peepcash-small.png b/static/img/logo-peepcash-small.png new file mode 100644 index 0000000..3563167 Binary files /dev/null and b/static/img/logo-peepcash-small.png differ diff --git a/static/img/logo-status.svg b/static/img/logo-status.svg index 69bf726..799e00e 100644 --- a/static/img/logo-status.svg +++ b/static/img/logo-status.svg @@ -1,5 +1,10 @@ - - - - + + + + + + + + +