diff --git a/app/components/footer.js b/app/components/footer.js index f97e5d7..d221e62 100644 --- a/app/components/footer.js +++ b/app/components/footer.js @@ -45,9 +45,9 @@ export default function (state) {
  • Overview
  • +
  • Playground
  • Resources
  • -
  • Contribute
  • -
  • Community
  • +
  • Community
  • diff --git a/app/sass/pages/_home.scss b/app/sass/pages/_home.scss index 786872f..2a3aea1 100644 --- a/app/sass/pages/_home.scss +++ b/app/sass/pages/_home.scss @@ -123,6 +123,10 @@ body.home { } } + ol, ul { + margin-bottom: 1.5rem; + } + p { margin-bottom: 1.5rem; max-width: 1000px; @@ -244,7 +248,7 @@ body.home { ul { li { @media (min-width: 701px) { - width: calc(100% / 5); + width: calc(100% / 4); } @media (max-width: 700px) { @@ -264,23 +268,19 @@ body.home { } &:nth-child(1) a::before { - background-image: url("/assets/media/svg/flag.svg"); - } - - &:nth-child(2) a::before { background-image: url("/assets/media/svg/keyboard.svg"); } - &:nth-child(3) a::before { + &:nth-child(2) a::before { background-image: url("/assets/media/svg/anchor.svg"); } - &:nth-child(4) a::before { - background-image: url("/assets/media/svg/chat.svg"); + &:nth-child(3) a::before { + background-image: url("/assets/media/svg/monitor.svg"); } - &:nth-child(5) a::before { - background-image: url("/assets/media/svg/monitor.svg"); + &:nth-child(4) a::before { + background-image: url("/assets/media/svg/flag.svg"); } } } @@ -296,8 +296,7 @@ body.home { ul { li { @media (min-width: 701px) { - // width: calc(100% / 3); // https://github.com/lbryio/lbry.tech/issues/104 - width: 50%; // + width: calc(100% / 3); } @media (max-width: 700px) { @@ -321,11 +320,11 @@ body.home { } &:nth-child(2) a::before { - background-image: url("/assets/media/svg/reddit.svg"); + background-image: url("/assets/media/svg/keyboard.svg"); } &:nth-child(3) a::before { - background-image: url("/assets/media/svg/slack.svg"); + background-image: url("/assets/media/svg/reddit.svg"); } } } diff --git a/app/views/home.js b/app/views/home.js index 94a0062..7f706bb 100644 --- a/app/views/home.js +++ b/app/views/home.js @@ -17,37 +17,33 @@ module.exports = exports = () => html`
    ${linkGrid([ { - description: "Learn how LBRY works with 3 easy examples", - destination: "/tour", - label: "Take the Tour", - title: "New to LBRY?" + description: "Get your head around LBRY with 3 interactive examples.", + destination: "/playground", + label: "Party in the Playground", + title: "Learn By Trying" }, { - description: "Help make LBRY better!", - destination: "/contribute", - label: "Explore our repos", - title: "Want to contribute?" + description: "Dig into the formal specification of the LBRY protocol.", + destination: "/whitepaper", + label: "Wisdom of the Whitepaper", + title: "Learn By Reading" } ])}
    -

    Intro/Overview

    +

    Overview

    What if anyone in the world could publish a piece of digital content, anyone else in the world could access it, for free or for payment, and that entire system worked end-to-end without any centralized authority or point of control?

    - -

    That's the idea behind LBRY. To create a market for accessing and publishing information that is global, decentralized, robust, optimal and complete.

    - - Learn more about our mission + Observe the Overview
    -

    Documentation

    -

    LBRY has enough moving parts to warrant comprehensive documentation. Whether you are interested in learning the technical details of our technology stack or you want to integrate LBRY into your life, you will find everything you need in our docs.

    - - Explore our documentation +

    Resources

    +

    Looking for API documentation, formal specifications, how-tos, resources, or the meaning of life? Find at least some of these things in the resources area.

    + Roam to Resources
    @@ -59,34 +55,28 @@ module.exports = exports = () => html`

    Contribute

    -

    Interested in progressing content freedom? Awesome! No matter your experience or skill level, you can make a difference.

    +

    No matter your experience or skill level, you can progress content freedom.

    -
    -
    - -
    -
    -

    Development

    -

    Like a bit of documentation but would prefer to jump in and make your mark on the blockchain? Perhaps add cats to it?

    - - Learn the LBRY API +

    + Collaborate with Contributors +

    Community

    -

    Hang out with us! We have a vibrant community of lbryians and would be delighted if you joined us.

    +

    There's literally 12n of us.

    diff --git a/documents/build.md b/documents/build.md index 589bdc0..f359b7f 100644 --- a/documents/build.md +++ b/documents/build.md @@ -4,6 +4,8 @@ title: Development Want to build something on top of LBRY? This is the place to get you started. +# THIS IS NOT DONE AT ALL AND IF YOU CONTINUE TO READ IT YOU MENTALLY ASSENT TO COMMITTING AT LEAST ONE CHANGE THAT MAKES IT BETTER + At least, it's the place to get started so long as you have some idea of what LBRY _is_. If you don't, you should read the [Overview](/overview) first. @@ -21,7 +23,7 @@ At least, it's the place to get started so long as you have some idea of what LB ### Web, Desktop, and Mobile Applications (Daemon-based Applications) -Almost all web, desktop, and mobile applications will use the [lbry daemon](https://github.com/lbryio/lbry) as a way of accessing and communicating with the LBRY network. +Almost all web, desktop, and mobile applications will use the [lbry-sdk](https://github.com/lbryio/lbry) as a way of accessing and communicating with the LBRY network. #### Web Applications @@ -31,7 +33,7 @@ Almost all web, desktop, and mobile applications will use the [lbry daemon](http #### Desktop Applications -1. Desktop applications will typically bundle the [lbry daemon](https://github.com/lbryio/lbry). +1. Desktop applications will typically use the [lbry-sdk](https://github.com/lbryio/lbry). 1. lbry-desktop as example #### Android Applications diff --git a/documents/contribute.md b/documents/contribute.md index 6c1b0f5..f70ddcf 100644 --- a/documents/contribute.md +++ b/documents/contribute.md @@ -5,7 +5,7 @@ title: Contributor's Guide Interested in working on the LBRY protocol, an official LBRY app, or other LBRY infrastructure? Awesome! This guide will get you started. -This guide is for contributing to the code bases maintained by the LBRY organization by [Coding](#coding), [Designing](#designing), [Writing](#writing), and [Testing](#testing). +This is a guide for contributing to the code bases maintained by the LBRY organization by [Coding](#coding), [Designing](#designing), [Writing](#writing), and [Testing](#testing). Contributors that provide accepted pull requests, well-specified issues, or assist in testing and quality assurance typically receive LBC tokens as [appreciation](#appreciation). @@ -50,7 +50,7 @@ If you want to contribute to LBRY, there's definitely something for you! The fir ## Coding -Several hundred extremely good-looking, intelligent and popular people, as well as our CTO, have contributed to LBRY. Join us! +Several hundred extremely good-looking, wise and moral people, as well as our CTO, have contributed to LBRY. Join us! ### How To Contribute Code