Skip to content

Commit ccad87e

Browse files
committed
📦 NEW: First commit
0 parents  commit ccad87e

File tree

4 files changed

+103
-0
lines changed

4 files changed

+103
-0
lines changed

.gitignore

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
2+
# NPM #
3+
##########
4+
# Ignore all directories called node_modules in current folder and any subfolders.
5+
node_modules/
6+
/node_modules/
7+
8+
# Packages #
9+
############
10+
*.7z
11+
*.dmg
12+
*.gz
13+
*.bz2
14+
*.iso
15+
*.jar
16+
*.rar
17+
*.tar
18+
*.zip
19+
*.tgz
20+
*.map
21+
22+
# Logs and databases #
23+
######################
24+
*.log
25+
*.sql
26+
*.env
27+
28+
# OS generated files #
29+
######################
30+
**.DS_Store*
31+
ehthumbs.db
32+
Icon?
33+
Thumbs.db
34+
._*
35+
36+
# Vim generated files #
37+
######################
38+
*.un~
39+
40+
# SASS #
41+
##########
42+
**/.sass-cache
43+
**/.sass-cache/*
44+
**/.map
45+
46+
# Composer #
47+
##########
48+
!assets/js/vendor/
49+
wpcs/
50+
/vendor/
51+
52+
# Bower #
53+
##########
54+
assets/bower_components/*
55+
56+
# Codekit #
57+
##########
58+
/codekit-config.json
59+
*.codekit
60+
**.codekit-cache/*
61+
62+
# Compiled Files and Build Dirs #
63+
##########
64+
/README.html
65+
66+
# PhpStrom Project Files #
67+
.idea/
68+
library/vendors/composer
69+
assets/img/.DS_Store
70+
71+
# Visual Studio Project Files #
72+
.vs/
73+
74+
# No lock files.
75+
package-lock.json
76+
yarn.lock
77+
settings.dat
78+
79+
# next.js
80+
/.next/
81+
/out/
82+

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License Copyright (c) 2022 msaaddev
2+
3+
Permission is hereby granted, free of
4+
charge, to any person obtaining a copy of this software and associated
5+
documentation files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use, copy, modify, merge,
7+
publish, distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to the
9+
following conditions:
10+
11+
The above copyright notice and this permission notice
12+
(including the next paragraph) shall be included in all copies or substantial
13+
portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
16+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
18+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

assets/cover.png

188 KB
Loading

assets/separator.jpeg

594 Bytes
Loading

0 commit comments

Comments
 (0)