Initial commit

This commit is contained in:
2022-08-14 20:04:30 +02:00
commit 6f84cd60ab
69 changed files with 12910 additions and 0 deletions

12
tailwind.config.js Normal file
View File

@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {},
},
plugins: [],
}