feat(docker): añadir Dockerfile para contenerizar la aplicación

This commit is contained in:
unknown
2026-06-11 16:05:10 -04:00
parent 74a67fbab2
commit 2a58693d31
70 changed files with 3826 additions and 874 deletions

21
tailwind.config.js Normal file
View File

@@ -0,0 +1,21 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
surface: {
DEFAULT: '#0f1419',
raised: '#1a2332',
border: '#2d3a4f',
},
accent: {
DEFAULT: '#3b82f6',
hover: '#2563eb',
muted: '#1e3a5f',
},
},
},
},
plugins: [],
};