Initial commit

This commit is contained in:
2026-01-15 11:57:08 +02:00
commit bced9f0ce8
46 changed files with 2078 additions and 0 deletions

25
tailwind.config.js Normal file
View File

@@ -0,0 +1,25 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'nest-red': '#e0234e',
'nest-red-dark': '#c41e3a',
'nest-gray': '#1a1a1a',
'nest-gray-light': '#2a2a2a',
'nest-gray-lighter': '#f8f9fa',
'nest-text-gray': '#6c757d'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-gradient': 'linear-gradient(135deg, rgba(224, 35, 78, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%)'
}
},
},
plugins: [],
}