Initial commit of project without large files

This commit is contained in:
2025-12-29 15:45:02 +05:30
parent 82ad17a88a
commit 2a58e4af62
79 changed files with 26524 additions and 0 deletions

22
tailwind.config.js Normal file
View File

@@ -0,0 +1,22 @@
// tailwind.config.js
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}", // Make sure this path is accurate
],
theme: {
extend: {
fontFamily: {
sans: ['Poppins', 'sans-serif'],
},
colors: {
lcepl: {
blue: '#1E3A8A',
gray: '#374151',
orange: '#F97316',
light: '#F9FAFB',
},
},
},
},
plugins: [],
};