Skip to content

Commit 1e3a0c4

Browse files
committed
First Commit
0 parents  commit 1e3a0c4

File tree

177 files changed

+4457
-0
lines changed

Some content is hidden

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

177 files changed

+4457
-0
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true

.eslintignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dist/*
2+
.cache
3+
public
4+
node_modules
5+
*.esm.js

.eslintrc.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"$schema": "https://json.schemastore.org/eslintrc",
3+
"root": true,
4+
"extends": [
5+
"next/core-web-vitals",
6+
"prettier",
7+
"plugin:tailwindcss/recommended"
8+
],
9+
"plugins": ["tailwindcss"],
10+
"rules": {
11+
"@next/next/no-html-link-for-pages": "off",
12+
"react/jsx-key": "off",
13+
"tailwindcss/no-custom-classname": "off"
14+
},
15+
"settings": {
16+
"tailwindcss": {
17+
"callees": ["cn"],
18+
"config": "tailwind.config.js"
19+
},
20+
"next": {
21+
"rootDir": ["./"]
22+
}
23+
},
24+
"overrides": [
25+
{
26+
"files": ["*.ts", "*.tsx"],
27+
"parser": "@typescript-eslint/parser"
28+
}
29+
]
30+
}

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
yarn.lock
8+
.yarnrc.yml
9+
.yarn/
10+
11+
# testing
12+
coverage
13+
14+
# next.js
15+
.next/
16+
out/
17+
build
18+
19+
20+
# misc
21+
.DS_Store
22+
*.pem
23+
public/ai-data/
24+
25+
# debug
26+
npm-debug.log*
27+
yarn-debug.log*
28+
yarn-error.log*
29+
.pnpm-debug.log*
30+
31+
# local env files
32+
.env.local
33+
.env.development.local
34+
.env.test.local
35+
.env.production.local
36+
37+
# turbo
38+
.turbo
39+
40+
.contentlayer
41+
.env

.prettierignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
cache
2+
.cache
3+
package.json
4+
package-lock.json
5+
public
6+
CHANGELOG.md
7+
.yarn
8+
dist
9+
node_modules
10+
.next
11+
build
12+
.contentlayer

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"typescript.tsdk": "../../node_modules/.pnpm/[email protected]/node_modules/typescript/lib",
3+
"typescript.enablePromptUseWorkspaceTsdk": true
4+
}

0 commit comments

Comments
 (0)