first commit

This commit is contained in:
2025-12-29 16:55:59 +08:00
commit 12e699ccb8
13 changed files with 19551 additions and 0 deletions

14
tailwind.config.js Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import('tailwindcss').Config} */
const { heroui } = require("@heroui/react");
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx,html,css}",
"./node_modules/@heroui/react/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [heroui()],
};