Added counter-frontend module to the repository

This commit is contained in:
2026-04-16 10:08:37 +05:30
parent 54172f6dff
commit 173864176f
19 changed files with 5376 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: "#231651",
secondary: "#64748b",
background: "#f8fafc",
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
}
},
},
plugins: [],
}