Fixes, and added dev program links
This commit is contained in:
parent
865bed281f
commit
438d424842
5 changed files with 12 additions and 26 deletions
|
@ -31,8 +31,13 @@ export default () => linkGrid([{
|
||||||
label: "Learn To Contribute",
|
label: "Learn To Contribute",
|
||||||
title: "Contributor's Guide"
|
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",
|
destination: "/build",
|
||||||
label: "Build An App",
|
label: "Build An App",
|
||||||
title: "Builder's Guide"
|
title: "Builder's Guide"
|
||||||
|
}, {
|
||||||
|
description: "Jumpstart your LBRY development with 100 LBC, on us",
|
||||||
|
destination: "/developer-program",
|
||||||
|
label: "Get Credits",
|
||||||
|
title: "Developer Program"
|
||||||
}]);
|
}]);
|
||||||
|
|
|
@ -30,10 +30,6 @@ main {
|
||||||
padding-top: 4rem;
|
padding-top: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inner-wrap {
|
.inner-wrap {
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
|
|
@ -2,24 +2,7 @@ developer-program {
|
||||||
@extend %markdown;
|
@extend %markdown;
|
||||||
|
|
||||||
input-submit {
|
input-submit {
|
||||||
// TODO: FIX THIS
|
|
||||||
// Entire block should not be here but something went wrong with the components
|
|
||||||
padding-top: 0.5rem;
|
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 {
|
.button {
|
||||||
|
|
|
@ -9,7 +9,9 @@ What if anyone in the world could publish digital content, anyone else in the wo
|
||||||
|
|
||||||
<MissionStatement/>
|
<MissionStatement/>
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
<sub>^1(#footnote-1)^ In the information theoretic sense, LBRY facilitates distribution of all data, whether it be a video or a spreadsheet.</sub>
|
<sub>^1(#footnote-1)^ In the information theoretic sense, LBRY facilitates distribution of all data, whether it be a video or a spreadsheet.</sub>
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
"@inc/eslint-config": "^1.1.3",
|
"@inc/eslint-config": "^1.1.3",
|
||||||
"@inc/sasslint-config": "^1.1.3",
|
"@inc/sasslint-config": "^1.1.3",
|
||||||
"@lbry/color": "^1.1.0",
|
"@lbry/color": "^1.1.0",
|
||||||
"@lbry/components": "^2.2.1",
|
"@lbry/components": "^2.2.3",
|
||||||
"eslint": "^5.14.1",
|
"eslint": "^5.14.1",
|
||||||
"husky": "^1.3.1",
|
"husky": "^1.3.1",
|
||||||
"nodemon": "^1.18.10",
|
"nodemon": "^1.18.10",
|
||||||
|
@ -96,12 +96,12 @@
|
||||||
"format": "eslint '**/*.js' --fix --ignore-pattern '/app/dist/'",
|
"format": "eslint '**/*.js' --fix --ignore-pattern '/app/dist/'",
|
||||||
"postinstall": "link-module-alias",
|
"postinstall": "link-module-alias",
|
||||||
"preinstall": "command -v link-module-alias; link-module-alias clean || true",
|
"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": "run-s test:*",
|
||||||
"test:dependencies": "updates --update ./ --exclude fastify,prismjs",
|
"test:dependencies": "updates --update ./ --exclude fastify,prismjs",
|
||||||
"test:lint": "standardx --verbose | snazzy",
|
"test:lint": "standardx --verbose | snazzy",
|
||||||
"test:sass": "sass-lint --config ./node_modules/@inc/sasslint-config/config.json --verbose --no-exit",
|
"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:sass": "sass --load-path=node_modules --watch app/sass:app/dist --style compressed",
|
||||||
"watch:server": "NODE_ENV=development nodemon --ignore 'app/dist'"
|
"watch:server": "NODE_ENV=development nodemon --ignore 'app/dist'"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue