Skip to content
This repository has been archived by the owner on May 17, 2018. It is now read-only.

Commit

Permalink
Planl development website
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurvi committed Jun 11, 2017
0 parents commit 97bccbd
Show file tree
Hide file tree
Showing 63 changed files with 16,219 additions and 0 deletions.
243 changes: 243 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,243 @@
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"mocha": true,
"jasmine": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"classes": true,
"jsx": true,
"impliedStrict": true
}
},
"plugins": [
"react"
],
"globals": {
"__DEV__": false
},
"rules": {
"no-console": [2, { allow: ["warn", "error"] }],
"block-scoped-var": 2,
"curly": 2,
"default-case": 2,
"dot-location": [2, "property"],
"dot-notation": 2,
"no-alert": 2,
"guard-for-in": 2,
"no-caller": 2,
"no-case-declarations": 2,
"no-else-return": 2,
"no-empty-function": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-extra-label": 2,
"no-floating-decimal": 2,
"no-implicit-globals": 2,
"no-implied-eval": 2,
"no-iterator": 2,
"no-labels": 2,
"no-lone-blocks": 2,
"no-loop-func": 2,
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-native-reassign": 2,
"no-new": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-octal": 2,
"no-octal-escape": 2,
"no-param-reassign": 2,
"no-proto": 2,
"no-script-url": 2,
"no-self-assign": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-throw-literal": 2,
"no-unmodified-loop-condition": 2,
"no-unused-labels": 2,
"no-unused-expressions": 2,
"no-useless-call": 2,
"no-void": 2,
"no-warning-comments": 0,
"no-with": 2,
"yoda": 2,
"no-delete-var": 2,
"no-label-var": 2,
"arrow-spacing": 2,
"no-var": 2,
"require-yield": 2,
"template-curly-spacing": 2,
"block-spacing": 2,
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"comma-spacing": [2, {"before": false, "after": true}],
"comma-style": [2, "last"],
"func-names": 2,
"jsx-quotes": [2, "prefer-double"],
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
"keyword-spacing": 2,
"new-parens": 2,
"no-continue": 2,
"no-lonely-if": 2,
"no-mixed-spaces-and-tabs": 2,
"no-spaced-func": 2,
"no-unneeded-ternary": 2,
"no-whitespace-before-property": 2,
"indent": [2, 2],
"linebreak-style": [2, "unix"],
"semi": [2, "always"],
"react/no-multi-comp": 2,
"react/no-string-refs": 2,
"react/prefer-es6-class": 2,
"react/self-closing-comp": 2,
"react/jsx-wrap-multilines": 2,
"react/jsx-closing-bracket-location": 2,
"react/jsx-equals-spacing": [2, "never"],
"react/jsx-indent-props": [2, 2],
"react/jsx-indent": [2, 2],
"react/jsx-key": 2,
"react/jsx-max-props-per-line": [2, { "maximum": 1 }],
"react/jsx-no-bind": [2, {
"ignoreRefs": true,
"allowArrowFunctions": false,
"allowBind": false
}],
"react/jsx-pascal-case": 2,
"react/jsx-space-before-closing": [2, "always"],
"react/display-name": 0
}
};module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"mocha": true,
"jasmine": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"classes": true,
"jsx": true,
"impliedStrict": true
}
},
"plugins": [
"react"
],
"globals": {
"__DEV__": false
},
"rules": {
"no-console": [2, { allow: ["warn", "error"] }],
"block-scoped-var": 2,
"curly": 2,
"default-case": 2,
"dot-location": [2, "property"],
"dot-notation": 2,
"no-alert": 2,
"guard-for-in": 2,
"no-caller": 2,
"no-case-declarations": 2,
"no-else-return": 2,
"no-empty-function": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-extra-label": 2,
"no-floating-decimal": 2,
"no-implicit-globals": 2,
"no-implied-eval": 2,
"no-iterator": 2,
"no-labels": 2,
"no-lone-blocks": 2,
"no-loop-func": 2,
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-native-reassign": 2,
"no-new": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-octal": 2,
"no-octal-escape": 2,
"no-param-reassign": 2,
"no-proto": 2,
"no-script-url": 2,
"no-self-assign": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-throw-literal": 2,
"no-unmodified-loop-condition": 2,
"no-unused-labels": 2,
"no-unused-expressions": 2,
"no-useless-call": 2,
"no-void": 2,
"no-warning-comments": 0,
"no-with": 2,
"yoda": 2,
"no-delete-var": 2,
"no-label-var": 2,
"arrow-spacing": 2,
"no-var": 2,
"require-yield": 2,
"template-curly-spacing": 2,
"block-spacing": 2,
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"comma-spacing": [2, {"before": false, "after": true}],
"comma-style": [2, "last"],
"func-names": 2,
"jsx-quotes": [2, "prefer-double"],
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
"keyword-spacing": 2,
"new-parens": 2,
"no-continue": 2,
"no-lonely-if": 2,
"no-mixed-spaces-and-tabs": 2,
"no-spaced-func": 2,
"no-unneeded-ternary": 2,
"no-whitespace-before-property": 2,
"indent": [2, 2],
"linebreak-style": [2, "unix"],
"semi": [2, "always"],
"react/no-multi-comp": 2,
"react/no-string-refs": 2,
"react/prefer-es6-class": 2,
"react/self-closing-comp": 2,
"react/jsx-wrap-multilines": 2,
"react/jsx-closing-bracket-location": 2,
"react/jsx-equals-spacing": [2, "never"],
"react/jsx-indent-props": [2, 2],
"react/jsx-indent": [2, 2],
"react/jsx-key": 2,
"react/jsx-max-props-per-line": [2, { "maximum": 1 }],
"react/jsx-no-bind": [2, {
"ignoreRefs": true,
"allowArrowFunctions": false,
"allowBind": false
}],
"react/jsx-pascal-case": 2,
"react/jsx-space-before-closing": [2, "always"],
"react/display-name": 0
}
};
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
.gatsby-context.js
.sass-cache/
public/
.idea/
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Planl marketing website
5 changes: 5 additions & 0 deletions assets/_redirects
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Redirects from what the browser requests to what we serve
/zorg/ios https://rink.hockeyapp.net/apps/0ca7f0630344415887bff669eb5f93c1/app_versions/1
/zorg/android https://rink.hockeyapp.net/apps/ca39d746be8941ccb65a68411d0f51c7
/ggd/android https://rink.hockeyapp.net/apps/cdf025587f08445ba4fa3d6e6aa04fcf
/ggd/ios https://rink.hockeyapp.net/apps/5c403f5cc4da412eb5649a880e2c155e
Binary file added assets/favicon.ico
Binary file not shown.
Binary file added assets/gebruikersvoorwaarden.pdf
Binary file not shown.
15 changes: 15 additions & 0 deletions assets/humans.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# humanstxt.org/
# The humans responsible & technology colophon

# TEAM

Frank -- co-founder -- @frankvanderhoek
Arthur -- co-founder -- @arthurvi

# THANKS

Planl team

# TECHNOLOGY COLOPHON

HTML5, CSS3, JS
Binary file added assets/privacybeleid.pdf
Binary file not shown.
5 changes: 5 additions & 0 deletions assets/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# www.robotstxt.org/

# Allow crawling of all content
User-agent: *
Disallow:
1 change: 1 addition & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
siteTitle="Planl - iOS, Android & web development"
65 changes: 65 additions & 0 deletions css/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/* hind-vadodara-300 - latin */
@font-face {
font-family: 'Hind Vadodara';
font-style: normal;
font-weight: 300;
src: url('../fonts/hind-vadodara-v2-latin-300.eot'); /* IE9 Compat Modes */
src: local('Hind Vadodara Light'), local('HindVadodara-Light'),
url('../fonts/hind-vadodara-v2-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/hind-vadodara-v2-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-300.woff') format('woff'), /* Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/hind-vadodara-v2-latin-300.svg#HindVadodara') format('svg'); /* Legacy iOS */
}
/* hind-vadodara-regular - latin */
@font-face {
font-family: 'Hind Vadodara';
font-style: normal;
font-weight: 400;
src: url('../fonts/hind-vadodara-v2-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Hind Vadodara'), local('HindVadodara-Regular'),
url('../fonts/hind-vadodara-v2-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/hind-vadodara-v2-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-regular.woff') format('woff'), /* Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/hind-vadodara-v2-latin-regular.svg#HindVadodara') format('svg'); /* Legacy iOS */
}
/* hind-vadodara-500 - latin */
@font-face {
font-family: 'Hind Vadodara';
font-style: normal;
font-weight: 500;
src: url('../fonts/hind-vadodara-v2-latin-500.eot'); /* IE9 Compat Modes */
src: local('Hind Vadodara Medium'), local('HindVadodara-Medium'),
url('../fonts/hind-vadodara-v2-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/hind-vadodara-v2-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-500.woff') format('woff'), /* Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/hind-vadodara-v2-latin-500.svg#HindVadodara') format('svg'); /* Legacy iOS */
}
/* hind-vadodara-600 - latin */
@font-face {
font-family: 'Hind Vadodara';
font-style: normal;
font-weight: 600;
src: url('../fonts/hind-vadodara-v2-latin-600.eot'); /* IE9 Compat Modes */
src: local('Hind Vadodara SemiBold'), local('HindVadodara-SemiBold'),
url('../fonts/hind-vadodara-v2-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/hind-vadodara-v2-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-600.woff') format('woff'), /* Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/hind-vadodara-v2-latin-600.svg#HindVadodara') format('svg'); /* Legacy iOS */
}
/* hind-vadodara-700 - latin */
@font-face {
font-family: 'Hind Vadodara';
font-style: normal;
font-weight: 700;
src: url('../fonts/hind-vadodara-v2-latin-700.eot'); /* IE9 Compat Modes */
src: local('Hind Vadodara Bold'), local('HindVadodara-Bold'),
url('../fonts/hind-vadodara-v2-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/hind-vadodara-v2-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-700.woff') format('woff'), /* Modern Browsers */
url('../fonts/hind-vadodara-v2-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/hind-vadodara-v2-latin-700.svg#HindVadodara') format('svg'); /* Legacy iOS */
}
Loading

0 comments on commit 97bccbd

Please sign in to comment.