first commit

This commit is contained in:
Romulus21
2023-12-28 10:28:53 +01:00
commit 2dcad24fbd
23 changed files with 5158 additions and 0 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: [],
}