Refactor app to React Router and Tailwind

This commit is contained in:
TopherMayor
2026-06-12 10:35:19 -07:00
parent 11f5d1b225
commit fa0a7f44b7
15 changed files with 3157 additions and 318 deletions

20
tailwind.config.js Normal file
View File

@@ -0,0 +1,20 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./client/index.html', './client/src/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
ink: '#0b0d14',
panel: '#13161f',
panel2: '#1a1e2a',
line: '#252a38',
aqua: '#00d4ff',
gold: '#fbbf24',
},
boxShadow: {
glow: '0 18px 60px rgba(0, 212, 255, 0.14)',
},
},
},
plugins: [],
}