Init du front

This commit is contained in:
ElPoyo
2025-09-26 16:37:33 +02:00
commit 65846640cf
32 changed files with 4159 additions and 0 deletions

15
tailwind.config.js Normal file
View File

@@ -0,0 +1,15 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
}