first_commit

This commit is contained in:
Tom-lyz
2025-08-26 17:41:23 +08:00
commit 467962dbb2
39 changed files with 1664 additions and 0 deletions

17
tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
import {heroui} from "@heroui/theme"
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
'./src/layouts/**/*.{js,ts,jsx,tsx,mdx}',
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
darkMode: "class",
plugins: [heroui()],
}