add tailwind

This commit is contained in:
root
2025-12-26 20:51:37 +09:00
parent 540d32a570
commit e6c532faae
4 changed files with 222 additions and 13 deletions

13
tailwind.config.js Normal file
View File

@@ -0,0 +1,13 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}