Initial WinningHunter MVP

This commit is contained in:
2026-07-07 20:40:43 +03:00
commit 8dd43c57ca
57 changed files with 5295 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
brand: {
DEFAULT: "#6d28d9",
fg: "#ffffff"
}
},
boxShadow: {
soft: "0 20px 60px rgba(15, 23, 42, 0.08)"
}
}
},
plugins: []
};
export default config;