Setup frontend

This commit is contained in:
Manik Maity
2024-11-05 22:12:03 +05:30
parent b5686b2961
commit 0d38e35655
9 changed files with 1304 additions and 365 deletions

View File

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