first commit

This commit is contained in:
MCHost
2025-06-16 10:11:55 -04:00
commit 612ae12863
17 changed files with 4324 additions and 0 deletions

13
tailwind.config.js Normal file
View File

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