added tailwind & heroicons, restyled page

This commit is contained in:
2024-11-01 21:02:00 +01:00
parent bc0b4ac4e2
commit 47c8420922
7 changed files with 1083 additions and 82 deletions

11
tailwind.config.js Normal file
View File

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