Skip to content

Commit b57439d

Browse files
committed
Initial 2024 commit
1 parent 5dd9fa5 commit b57439d

File tree

144 files changed

+4237
-12613
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+4237
-12613
lines changed

.gitignore

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
7-
8-
# testing
9-
/coverage
10-
11-
# production
12-
/build
13-
14-
# misc
15-
.DS_Store
16-
.env.local
17-
.env.development.local
18-
.env.test.local
19-
.env.production.local
20-
1+
# Logs
2+
logs
3+
*.log
214
npm-debug.log*
225
yarn-debug.log*
236
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
*.tsbuildinfo

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"printWidth": 160,
3+
"singleQuote": true,
4+
"semi": false
5+
}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# moduleart.github.io
2-
Official Module Art website.
2+
3+
Official ModuleArt website.

docs/.vite/manifest.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"index.html": {
3+
"file": "assets/app-E0FD-che.js",
4+
"name": "app",
5+
"src": "index.html",
6+
"isEntry": true,
7+
"css": [
8+
"assets/app-BDNZmPAP.css"
9+
],
10+
"assets": [
11+
"assets/Pacifico-Dla-xvIJ.ttf",
12+
"assets/Inter-Regular-B3vv58xm.ttf",
13+
"assets/Inter-Bold-DzTqCIlM.ttf"
14+
]
15+
},
16+
"src/assets/fonts/Inter/Inter-Bold.ttf": {
17+
"file": "assets/Inter-Bold-DzTqCIlM.ttf",
18+
"src": "src/assets/fonts/Inter/Inter-Bold.ttf"
19+
},
20+
"src/assets/fonts/Inter/Inter-Regular.ttf": {
21+
"file": "assets/Inter-Regular-B3vv58xm.ttf",
22+
"src": "src/assets/fonts/Inter/Inter-Regular.ttf"
23+
},
24+
"src/assets/fonts/Pacifico/Pacifico.ttf": {
25+
"file": "assets/Pacifico-Dla-xvIJ.ttf",
26+
"src": "src/assets/fonts/Pacifico/Pacifico.ttf"
27+
}
28+
}

0 commit comments

Comments
 (0)