feat: complete revamp using daisyui

This commit is contained in:
2024-12-01 23:44:50 +05:30
parent 6853aeb1ba
commit 4dee378f84
21 changed files with 2052 additions and 2121 deletions

15
tailwind.config.js Normal file
View File

@@ -0,0 +1,15 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
"space-grotesk": '"Space Grotesk"',
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["synthwave", "coffee"],
},
};