initial commit

This commit is contained in:
2025-03-11 02:09:59 -03:00
commit 7c9c375029
16 changed files with 2232 additions and 0 deletions

12
tailwind.config.js Normal file
View File

@@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}"
],
theme: {
extend: {},
},
plugins: [],
};