initial commit

This commit is contained in:
2024-09-23 14:00:40 +02:00
commit 9cb89279f8
26 changed files with 13807 additions and 0 deletions

10
tailwind.config.js Normal file
View File

@@ -0,0 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}", // add this line
],
theme: {
extend: {},
},
plugins: [],
}