Initial commit: Vite + React project setup

This commit is contained in:
Sebastian
2025-12-05 16:56:43 +00:00
commit bd25742bf5
32 changed files with 3369 additions and 0 deletions

19
tailwind.config.js Normal file
View File

@@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'banorte-red': '#C8102E',
'banorte-blue': '#001A4D',
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
}