diff --git a/app/components/resources-link-grid.js b/app/components/resources-link-grid.js index 526a894..1a5b9db 100644 --- a/app/components/resources-link-grid.js +++ b/app/components/resources-link-grid.js @@ -31,8 +31,13 @@ export default () => linkGrid([{ label: "Learn To Contribute", title: "Contributor's Guide" }, { - description: "Want to build your own dApp or auxiliary service? Start here! ", + description: "Want to build your own dApp or auxiliary service? Start here!", destination: "/build", label: "Build An App", title: "Builder's Guide" +}, { + description: "Jumpstart your LBRY development with 100 LBC, on us", + destination: "/developer-program", + label: "Get Credits", + title: "Developer Program" }]); diff --git a/app/sass/_layout.scss b/app/sass/_layout.scss index d66dc98..dfa1454 100644 --- a/app/sass/_layout.scss +++ b/app/sass/_layout.scss @@ -30,10 +30,6 @@ main { padding-top: 4rem; } -input { - border-radius: 0; -} - .inner-wrap { max-width: 1200px; margin-right: auto; diff --git a/app/sass/pages/_developer.scss b/app/sass/pages/_developer.scss index 2e05282..0996119 100644 --- a/app/sass/pages/_developer.scss +++ b/app/sass/pages/_developer.scss @@ -2,24 +2,7 @@ developer-program { @extend %markdown; input-submit { - // TODO: FIX THIS - // Entire block should not be here but something went wrong with the components padding-top: 0.5rem; - - input { - padding-right: var(--spacing-s); - padding-left: var(--spacing-s); - transition: border 0.2s; - } - - button { - background-color: $lbry-black; - border-color: $lbry-black; - color: $lbry-white; - padding-right: var(--spacing-m); - padding-left: var(--spacing-m); - transition: all 0.2s; - } } .button { diff --git a/documents/overview.md b/documents/overview.md index 0aaa195..be10c13 100644 --- a/documents/overview.md +++ b/documents/overview.md @@ -9,7 +9,9 @@ What if anyone in the world could publish digital content, anyone else in the wo -That's a fancy sentence, so here's a plain one: we thought it'd be damn cool if there was a system that made it easy to discover and distribute as much of the world's information as possible but was owned and controlled by no one. +That's a fancy sentence, so here's a plain one: we thought it'd be *damn **cool*** if there was a system that made it easy to discover and distribute as much of the world's information as possible but was owned and controlled by no one. + +If you agree with us, feel free to join our [Developer Program](/developer-program) and we'll set you up with 100 LBC to get started. ^1(#footnote-1)^ In the information theoretic sense, LBRY facilitates distribution of all data, whether it be a video or a spreadsheet. diff --git a/package.json b/package.json index 114bbde..41bde78 100755 --- a/package.json +++ b/package.json @@ -65,7 +65,7 @@ "@inc/eslint-config": "^1.1.3", "@inc/sasslint-config": "^1.1.3", "@lbry/color": "^1.1.0", - "@lbry/components": "^2.2.1", + "@lbry/components": "^2.2.3", "eslint": "^5.14.1", "husky": "^1.3.1", "nodemon": "^1.18.10", @@ -96,12 +96,12 @@ "format": "eslint '**/*.js' --fix --ignore-pattern '/app/dist/'", "postinstall": "link-module-alias", "preinstall": "command -v link-module-alias; link-module-alias clean || true", - "start": "npm run css; npm i; NODE_ENV=production node index.js", + "start": "npm i; npm run css; NODE_ENV=production node index.js", "test": "run-s test:*", "test:dependencies": "updates --update ./ --exclude fastify,prismjs", "test:lint": "standardx --verbose | snazzy", "test:sass": "sass-lint --config ./node_modules/@inc/sasslint-config/config.json --verbose --no-exit", - "watch": "run-p watch:*", + "watch": "npm run css; run-p watch:*", "watch:sass": "sass --load-path=node_modules --watch app/sass:app/dist --style compressed", "watch:server": "NODE_ENV=development nodemon --ignore 'app/dist'" },