Setup app

This commit is contained in:
2024-08-08 12:52:23 +01:00
parent eb4740e874
commit 8e63aa8b30
34 changed files with 5419 additions and 2 deletions

12
tailwind.config.js Normal file
View File

@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}