Initial Commit

This commit is contained in:
Xyroscar
2024-11-06 19:31:39 +05:30
commit 2e29a1cb82
74 changed files with 10837 additions and 0 deletions

14
tailwind.config.js Normal file
View File

@@ -0,0 +1,14 @@
import daisyui from "daisyui";
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {},
},
plugins: [daisyui],
daisyui: {
themes: ["light", "dark"],
}
}