Phase 5: scaffold Sysadmin Panel — all pages, layout, routing, docker-compose service

This commit is contained in:
2026-04-20 20:17:59 +03:00
parent 9812a25198
commit e0b0a04819
18 changed files with 1025 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
cyan: {
400: '#22d3ee',
500: '#06b6d4',
600: '#0891b2',
700: '#0e7490',
},
},
},
},
plugins: [],
}