Refactored code, working with database data

This commit is contained in:
2023-09-08 08:59:21 -04:00
parent 8c2a6368ad
commit 17b76ade1f
19 changed files with 211 additions and 379 deletions

View File

@@ -1,11 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {},
extend: {}
},
plugins: [],
}
plugins: []
};