feat: implement the first version of landing page

This commit is contained in:
Henry Li
2026-01-23 13:24:03 +08:00
parent 307972f93e
commit 3f4bcd9433
25 changed files with 2576 additions and 241 deletions

View File

@@ -12,13 +12,10 @@
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"checkJs": true,
"noImplicitAny": false,
"checkJs": false,
/* Bundled projects */
"lib": [
"dom",
"dom.iterable",
"ES2022"
],
"lib": ["dom", "dom.iterable", "ES2022"],
"noEmit": true,
"module": "ESNext",
"moduleResolution": "Bundler",
@@ -32,9 +29,7 @@
/* Path Aliases */
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
"@/*": ["./src/*"]
}
},
"include": [
@@ -46,8 +41,5 @@
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules",
"generated"
]
"exclude": ["node_modules", "generated"]
}