first commit

This commit is contained in:
2024-08-23 19:17:13 +00:00
commit d6df9f205a
23 changed files with 6009 additions and 0 deletions

30
app/tailwind.config.ts Normal file
View File

@@ -0,0 +1,30 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [
require('daisyui'),
],
daisyui: {
styled: true,
themes: ['dim'],
base: true,
utils: true,
logs: true,
rtl: false,
},
};
export default config;