Initial UI

This commit is contained in:
2026-03-01 13:17:28 +05:30
commit 5e58ebe650
24 changed files with 4275 additions and 0 deletions

16
tailwind.config.js Normal file
View File

@@ -0,0 +1,16 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,jsx}"],
theme: {
extend: {
colors: {
neonGreen: "#00ff9f",
neonRed: "#ff3b3b",
neonBlue: "#3b82f6",
neonPink: "#ff00c8",
neonGold: "#facc15",
}
},
},
plugins: [],
}