initailization on the POS

This commit is contained in:
2026-06-29 15:19:19 +05:30
commit 55bd885976
67 changed files with 8836 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,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
shake: {
'0%, 100%': { transform: 'translateX(0)' },
'25%': { transform: 'translateX(-5px)' },
'75%': { transform: 'translateX(5px)' }
}
},
colors: {
primary: {
DEFAULT: '#662582',
light: '#f3e8f8',
dark: '#4a1b5e'
}
},
fontFamily: {
sans: ['Segoe UI', 'system-ui', '-apple-system', 'sans-serif']
}
},
},
plugins: [],
}