initial commit

This commit is contained in:
Kentai Radiquum 2024-05-19 13:48:55 +05:00
commit c0a4a8b5df
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 1394 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
node_modules

1379
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

5
package.json Normal file
View file

@ -0,0 +1,5 @@
{
"devDependencies": {
"tailwindcss": "^3.4.3"
}
}

9
tailwind.config.js Normal file
View file

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [],
}