initial commit

This commit is contained in:
2026-05-20 12:05:11 +05:30
commit f4dc2b6a5a
21 changed files with 4822 additions and 0 deletions

29
tailwind.config.js Normal file
View File

@@ -0,0 +1,29 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
brand: {
50: '#eef2ff',
100: '#e0e7ff',
200: '#c7d2fe',
300: '#a5b4fc',
400: '#818cf8',
500: '#6366f1',
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81'
}
},
boxShadow: {
glow: '0 0 20px -2px rgba(99,102,241,0.45)'
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif']
}
}
},
plugins: []
}