Milestone 1.

This commit is contained in:
2025-08-18 20:14:56 +02:00
parent 9d1623c739
commit 1646d7b827
23 changed files with 1684 additions and 1275 deletions

17
tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
import daisyui from "daisyui";
export default {
// Make sure all files that contain Tailwind/DaisyUI classes are included here
content: [
"./app/templates/**/*.html",
"./app/static/js/**/*.js"
],
theme: {
extend: {}
},
plugins: [daisyui],
daisyui: {
themes: ["light", "dark", "cupcake"]
}
};