Initial commit

This commit is contained in:
2026-01-15 12:44:09 +02:00
commit 05bcfc12d2
46 changed files with 2157 additions and 0 deletions

24
tailwind.config.js Normal file
View File

@@ -0,0 +1,24 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'nest-red': '#e91e63',
'nest-pink': '#e91e63',
'nest-dark': '#1a1a1a',
'nest-gray': '#f5f5f5',
'nest-text': '#333333'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-gradient': 'linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%)'
}
},
},
plugins: [],
}