Skip to content

Commit 61a17e9

Browse files
committed
[feat] Add donate page
1 parent c23a732 commit 61a17e9

File tree

6 files changed

+1230
-689
lines changed

6 files changed

+1230
-689
lines changed

.gitignore

Lines changed: 83 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,83 @@
1-
# Node template
2-
3-
# Logs
4-
logs
5-
*.log
6-
npm-debug.log*
7-
yarn-debug.log*
8-
yarn-error.log*
9-
10-
# Runtime data
11-
pids
12-
*.pid
13-
*.seed
14-
*.pid.lock
15-
16-
# Directory for instrumented libs generated by jscoverage/JSCover
17-
lib-cov
18-
19-
# Coverage directory used by tools like istanbul
20-
coverage
21-
22-
# nyc test coverage
23-
.nyc_output
24-
25-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26-
.grunt
27-
28-
# Bower dependency directory (https://bower.io/)
29-
bower_components
30-
31-
# node-waf configuration
32-
.lock-wscript
33-
34-
# Compiled binary addons (https://nodejs.org/api/addons.html)
35-
build/Release
36-
37-
# Dependency directories
38-
node_modules/
39-
jspm_packages/
40-
41-
# Typescript v1 declaration files
42-
typings/
43-
44-
# Optional npm cache directory
45-
.npm
46-
47-
# Optional eslint cache
48-
.eslintcache
49-
50-
# Optional REPL history
51-
.node_repl_history
52-
53-
# Output of 'npm pack'
54-
*.tgz
55-
56-
# Yarn Integrity file
57-
.yarn-integrity
58-
59-
# dotenv environment variables file
60-
.env
61-
.env.development
62-
.env.production
63-
64-
# IDE
65-
.idea/*
66-
*.iml
67-
*.sublime-*
68-
69-
# OSX
70-
.DS_Store
71-
.vscode
72-
73-
# Docs Custom
74-
.cache/
75-
public
76-
yarn-error.log
77-
.netlify/
78-
79-
# Local Netlify folder
80-
.netlify
81-
82-
.ghost.json
1+
# Node template
2+
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# Bower dependency directory (https://bower.io/)
29+
bower_components
30+
31+
# node-waf configuration
32+
.lock-wscript
33+
34+
# Compiled binary addons (https://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# Typescript v1 declaration files
42+
typings/
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# dotenv environment variables file
60+
.env
61+
.env.development
62+
.env.production
63+
64+
# IDE
65+
.idea/*
66+
*.iml
67+
*.sublime-*
68+
69+
# OSX
70+
.DS_Store
71+
.vscode
72+
73+
# Docs Custom
74+
.cache/
75+
public
76+
yarn-error.log
77+
.netlify/
78+
79+
# Local Netlify folder
80+
.netlify
81+
82+
.ghost.json
83+
.ghost

0 commit comments

Comments
 (0)